home *** CD-ROM | disk | FTP | other *** search
/ Giga Games 1 / Giga Games.iso / net / usenet / volume7 / nethack3 / patch8p < prev    next >
Encoding:
Internet Message Format  |  1990-06-08  |  57.8 KB

  1. Path: uunet!zephyr.ens.tek.com!tekred!saab!billr
  2. From: billr@saab.CNA.TEK.COM (Bill Randle)
  3. Newsgroups: comp.sources.games
  4. Subject: v10i034:  NetHack3 -  display oriented dungeons & dragons (Ver. 3.0), Patch8p
  5. Message-ID: <5742@tekred.CNA.TEK.COM>
  6. Date: 5 Jun 90 18:00:28 GMT
  7. Sender: news@tekred.CNA.TEK.COM
  8. Lines: 1009
  9. Approved: billr@saab.CNA.TEK.COM
  10.  
  11. Submitted-by: Izchak Miller <izchak@linc.cis.upenn.edu>
  12. Posting-number: Volume 10, Issue 34
  13. Archive-name: NetHack3/Patch8p
  14. Patch-To: NetHack3: Volume 7, Issue 56-93
  15.  
  16.  
  17.  
  18. #! /bin/sh
  19. # This is a shell archive.  Remove anything before this line, then unpack
  20. # it by saving it into a file and typing "sh file".  To overwrite existing
  21. # files, type "sh file -c".  You can also feed this as standard input via
  22. # unshar, or by typing "sh <file", e.g..  If this archive is complete, you
  23. # will see the following message at the end:
  24. #        "End of archive 16 (of 24)."
  25. # Contents:  others/maintain.ovl others/splitf.uu
  26. # Wrapped by billr@saab on Mon Jun  4 15:27:26 1990
  27. PATH=/bin:/usr/bin:/usr/ucb ; export PATH
  28. if test -f 'others/maintain.ovl' -a "${1}" != "-c" ; then 
  29.   echo shar: Will not clobber existing file \"'others/maintain.ovl'\"
  30. else
  31. echo shar: Extracting \"'others/maintain.ovl'\" \(17778 characters\)
  32. sed "s/^X//" >'others/maintain.ovl' <<'END_OF_FILE'
  33. X            Maintaining PC NetHack
  34. X               ========================
  35. X               Last revision: 1990may27
  36. X
  37. XThe installation of the system of overlay management that currently
  38. Xbrings full-featured NetHack to the IBM PC and compatibles has
  39. Xintroduced a number of arcanities into the source code of the
  40. Xprogramme, and unfortunately running afoul of these intricacies can
  41. Xresult (as we ourselves have discovered) in the most bizarre and
  42. Xstrangely inexplicable dysfunctional manifestations, aka sick bugs.
  43. X
  44. XThis document is required reading for anyone making substantive
  45. Xchanges to NetHack for the PC or embarking upon a revision of its
  46. Xoverlay structure.
  47. X
  48. X
  49. X1. The overlay manager
  50. X----------------------
  51. XNetHack is by now a fairly large programme (in excess of 800
  52. Xkilobytes), and in order to compile it for the PC (which typically
  53. Xhas little more than 500k of available memory) it was necessary to
  54. Xrely on the technique of _overlaying_, whereby not all the
  55. Xprogramme is resident in memory at the same time, segments of the
  56. Xprogramme being loaded and discarded as they are needed. Unlike
  57. Xtraditional candidates for the overlaying strategy, however, NetHack
  58. Xdoes not exhibit strongly phased behaviour; although much of the code
  59. Xis not being used at any one moment, there is comparatively little
  60. Xcode that can be confidently said not to be related to or potentially
  61. Xnecessary for the immediate progress of the game.
  62. X    Furthermore we wished to develop an overlaying strategy that
  63. Xdid _not_ involve intimate knowledge of the operation of the
  64. Xprogramme (since NetHack is an international team effort, and few
  65. Xpeople have a good feeling for the totality of the code structure),
  66. Xand which would not require substantive changes to the source code,
  67. Ximpacting on its maintainability and portability.
  68. X    It turned out to be impossible to satisfy these goals with
  69. Xtools that are widely available at the time of writing, and so we
  70. Xundertook to write our own overlay manager (compatible with
  71. XMicrosoft's, but more in concert with NetHack's particular needs).
  72. XThe result is called ovlmgr.asm and is documented in the file
  73. Xovlmgr.doc. You would probably be well advised to read at least the
  74. Xless technical parts of that file now.
  75. X
  76. X
  77. X2. The trampoli mechanism
  78. X-------------------------
  79. XOne of the difficulties with using overlays for C (particularly
  80. XMicrosoft C) is that while common C programming practise places heavy
  81. Xreliance on function pointers, Microsoft's overlay linker is unable
  82. Xto resolve calls through pointers to functions that are in remote
  83. Xoverlays. Nor, unfortunately, does it choose to report such failures;
  84. Xrather, it generates calls into (what often turns out to be in the
  85. Xcase of our nonstandard overlay manager) the deepest of space. This
  86. Xcan result in truly strange behaviour on the part of your programme -
  87. Xincluding bugs that come and go in as close to a random pattern as
  88. Xyou are ever likely to see.
  89. X    Other than the creative use of pattern-matching utilities
  90. Xsuch as grep to locate the offending calls, there is unfortunately no
  91. Xadvice we can offer in tracking down these bugs. Once they have been
  92. Xisolated, however, they can be remedied straightforwardly.
  93. X
  94. XIn order for the linker not to screw up on a pointered function call
  95. Xit is (to simplify an actually rather complicated situation)
  96. Xnecessary that the function called be located in the ROOT "overlay",
  97. Xand thus not be subject to swapping. Rather than linking the full
  98. Xtext of every pointered function into the root, however, it suffices
  99. Xto place a "trampoline" function there which performs a direct call
  100. Xto the "real" function that does the work, in whatever overlay it
  101. Xmight naturally reside in. Due to a not-quite-accident of the
  102. Xbehaviour of the C preprocessor (it was originally intended to make
  103. Xpossible functions whose address can be taken but which expand inline
  104. Xas macros where possible, a not unrelated function), it turns out to
  105. Xbe possible to arrange for this without major change to the C source
  106. Xcode - and without serious impact on the performance of "regular"
  107. Xcalls to the same functions.
  108. X
  109. XThe C preprocessor's expansion of a macro with parameters is triggered
  110. Xby an encounter with the macro name immediately followed by an open
  111. Xparenthesis. If the name is found, but it is not followed by a
  112. Xparenthesis, the macro is not matched and no expansion takes place.
  113. XAt the same time it may be noted that (unless someone has been oddly
  114. Xstrange and enclosed a function name in quite unneeded parentheses!),
  115. Xa function name is typically followed by an open parenthesis if, and
  116. Xonly if, it is being declared, defined or invoked; if its address is
  117. Xbeing taken it will necessarily be followed by some other token.
  118. XFurthermore (except in the unfortunate case of the ill-conceived
  119. Xnew-style ANSI declaration of a function that takes no parameters) it
  120. Xwill be observed that the number of parameters to a call of the
  121. Xfunction (assuming that this number is fixed; if not, I grant, we
  122. Xhave a problem) is the same in all these contexts. This implies that
  123. Xif all the modules of a programme are uniformly processed in the
  124. Xcontext of a macro definition such as
  125. X
  126. X    #define zook(a,b) plenk(a,b)
  127. X
  128. Xand assuming that all functions named zook() take exactly two
  129. Xarguments, then the resulting programme will be completely identical
  130. Xto the original (without this definition) except that the link
  131. Xmap will report the existence of the function plenk() in place of
  132. Xzook() -- UNLESS there was a place in the programme where the address
  133. Xof zook was taken. In that case, the linker would report an
  134. Xunresolved external reference for that symbol.
  135. X    That unresolved reference is, of course, precisely what we
  136. Xneed; if in another source file (one that did not see the macro
  137. Xdefinition) we placed the function declaration
  138. X
  139. X    some_t zook(this_t a, that_t b)
  140. X      { extern some_t plenk(this_t, that_t);
  141. X        return plenk(a, b);
  142. X      }
  143. X
  144. Xthis would both satisfy the unresolved reference and restore the
  145. Xoriginal semantics of the programme (even including pointer
  146. Xcomparison!) -- while providing us with precisely the kind of
  147. X"trampoline" module that we need to circumvent the problem with the
  148. Xlinker.
  149. X    This is the basis of the approach we have taken in PC
  150. XNetHack; rather than using the somewhat idiosyncratic identifier
  151. X"plenk", however, we have systematically employed (in the files
  152. Xtrampoli.h and trampoli.c) identifiers generated by appending
  153. Xunderscores to the ends of the names of the functions we have needed
  154. Xto so indirect(1).
  155. X
  156. XThere are a few small complications. The first is ensuring that both
  157. Xthe versions of the trampoli'd function (foo() and foo_()) are
  158. Xsimilarly typed by the appropriate extern declarations (which
  159. Xthemselves must be written); this can be accomplished by placing all
  160. Xof these declarations in a header file that is processed _twice_,
  161. Xonce before and once after the inclusion of the file containing the
  162. Xtrampoli macro definitions, thereby ensuring that both variants of
  163. Xthe name have been seen in connection with the appropriate types. The
  164. Xsecond is that some care must be exercised not to employ other macros
  165. Xthat interfere with the normal recognition of function syntax: it is
  166. Xthe presence of the open parenthesis after the name of the function
  167. Xthat triggers name substitution, and not the fact that the function
  168. Xis called; and so (particularly in the case of declarations) it is
  169. Xnecessary that if a macro is used to supply the _arguments_ of a
  170. Xtrampoli'd function, it must also supply the name (this necessity in
  171. Xfact triggered a change in the style of the macros that provide
  172. Xdialect-independent function declaration in NetHack; the new style
  173. Xwould have you write FDECL(functionName, (argTypes...)).
  174. X    Finally, there is the case of functions declared to take no
  175. Xarguments whatsoever; in Standard C this is notated:
  176. X
  177. X    some_t aFunction(void);
  178. X
  179. Xfor no theoretically well-motivated reason I can discern. Such a
  180. Xdeclaration will _not_ match a macro definition such as
  181. X
  182. X    #define aFunction() aFunction_()
  183. X
  184. X-- in fact the compiler will detect an error when processing that
  185. Xdeclaration in the scope of this macro. The only solution is to
  186. Xeschew the use of this strange syntax and unfrabjously forgo the
  187. Xconcomitant security of well- and thoroughly- checked typage. To
  188. Xwhich end we have provided an ecchy macro, NDECL(functionName), which
  189. Xuses the new syntax _unless_ the compiler is not Standard or OVERLAY
  190. Xis enabled.
  191. X
  192. XThere is one further consideration: that this technique only applies,
  193. Xof course, to functions that are published to the linker. For this
  194. Xreason, wherever such trampoli'd functions were originally declared
  195. Xstatic, that declaration has been changed to "STATIC_PTR", a macro
  196. Xthat expands to "static" unless the OVERLAY flag has been selected in
  197. Xthe configuration file, enabling the trampoli mechanism. Thus such
  198. Xfunctions lose their privacy in this one case.
  199. X
  200. X
  201. X3. OVLx
  202. X-------
  203. XThe strategies described above work fine, but they only stretch so
  204. Xfar. In particular, they do not admit of an overlay structure in
  205. Xwhich functions are linked into different overlays even though they
  206. Xoriginate in the same source file.
  207. X    Classically, this is not considered a real limitation,
  208. Xbecause one has the freedom to regroup the functions into different
  209. Xsource files as needed; however, in the case of NetHack this was not
  210. Xa realistic option, since what structure this unwieldy programme has
  211. Xis precisely in the current grouping of functions together.
  212. XNonetheless, the ability to perform some functional grouping is an
  213. Xabsolute requirement for acceptable performance, since many NetHack
  214. Xsource modules (were.c, for example) contain one or two tiny
  215. Xfunctions that are called with great frequency (several millions of
  216. Xtimes per game is not unheard of) and whose return value determines
  217. Xwhether the remaining large, slow functions of the file will be
  218. Xrequired at all in the near future. Obviously these small checking
  219. Xfunctions should be linked into the same overlays with their callers,
  220. Xwhile the remainder of the source module should not.
  221. X
  222. XIn order to make this possible we ran a dynamic profile on the game
  223. Xto determine exactly which functions in which modules required such
  224. Xdistinguished treatment, and we have flagged each function for
  225. Xconditional compilation (with #if ... #endif) in groups according
  226. Xapproximately to their frequency of invocation and functionality.
  227. XThese groups have been arbitrarily named in each source file (in
  228. Xdecreasing order of frequency), OVL0, OVL1, OVL2, OVL3 and OVLB (B
  229. Xfor "base functions", those that deserve no special treatment at
  230. Xall). It is thus possible to compile only a small number of the
  231. Xfunctions in a file by defining but one or two of these symbols on
  232. Xthe compiler's command line (with the switch /DOVL2, for example);
  233. Xthe compiler will ignore the remainder as if they did not exist.
  234. X(There is an "escape clause" in hack.h that ensures that if none of
  235. Xthese flags is defined on the command line, then all of them will be
  236. Xduring compilation; this makes the non-use of this mechanism
  237. Xstraightforward!)
  238. X    By repeated invocation of the compiler on the _same_ source
  239. Xfile it is possible to accumulate disjoint object modules that
  240. Xbetween them contain the images of all the functions in the original
  241. Xsource, but partitioned as is most convenient. Care must, of course,
  242. Xbe taken over conflicts of name in both the object file put out (all
  243. Xslices will by default be called SRCFILE.OBJ, and this default must
  244. Xbe overridden with distinct file names for each output slice) and in
  245. Xthe names of the text segments the compiler is to generate; you can
  246. Xsee this at work in Makefile.ovl. (You may wonder, as we did at
  247. Xfirst, why the text segment name would have to be made distinct in
  248. Xeach object file slice (the default segment name is a function of the
  249. Xsource file name and the compilation model only). The reason for this
  250. Xis, quite daftly to my mind, that the linker considers the identity
  251. Xof segment names and combine classes better reason to combine
  252. Xsegments than the programmer's explicit instructions in the requested
  253. Xoverlay pattern are reason to keep them apart. Programmer, ask not
  254. Xwhy...).
  255. X
  256. XOnce again, that works fine except for the small matter of
  257. Xdeclarations (where have we heard this before?). For objects that
  258. Xonce were static must now be made visible to the linker that they may
  259. Xbe resolved across the reaches of inter-overlay space. To this end we
  260. Xhave provided three macros, all of which expand simply to "static" if
  261. Xno OVLx flags are defined on the compilation command line. They are:
  262. X
  263. XSTATIC_DCL    which introduces a declaration (as distinct from a
  264. X        definition) of an object that would be static were it
  265. X        not for the requirements of the OVLx mechanism. Its
  266. X        expansion is "static", normally, but it becomes
  267. X        "extern" in the event that this source file has been
  268. X        split into slices with the OVLx mechanism.
  269. X
  270. XSTATIC_OVL    is used when _defining_ a function (giving its text,
  271. X        that is) that is logically static but may be called
  272. X        across slices; it expands to "static" unless OVLx is
  273. X        active; in the latter case it expands to null,
  274. X        leaving the function with "previous linkage" as the
  275. X        standard says. Note that this behaviour is quite
  276. X        similar to, but very different from, that of
  277. X        STATIC_PTR (described above), which has the same two
  278. X        expansions but which is triggered not by OVLx but by
  279. X        the OVERLAY flag which enables the trampoli mechanism.
  280. X            STATIC_OVL also differs from the STATIC_DCL
  281. X        and STATIC_VAR in that it is employed _within_ OVLx
  282. X        slices, while the others are used to generate
  283. X        declarations and are deployed in areas common to all
  284. X        slices.
  285. X
  286. XSTATIC_VAR    is used to introduce uninitialised would-be-static
  287. X        variables. Its expansion is complex, since it must
  288. X        read as "static" in the usual case, but as "extern"
  289. X        if OVLx is in use -- in all overlays but one, where
  290. X        it must expand to the null sequence -- giving it
  291. X        "previous linkage" and "tentative definition" (to
  292. X        ensure that the variable gets defined at all).
  293. X            This one took a while to get right, and
  294. X        believe me, using the macro is a lot easier than
  295. X        trying to keep the #ifdefs straight yourself!
  296. X
  297. XAn initialised variable that is file-level static unless OVLx is in
  298. Xuse must now be written with a STATIC_DCL declaration, and a
  299. Xdefinition (and static initialiser) enclosed within the bracketing
  300. Xtag of one of the OVLx slices (any will do; we use OVLB).
  301. X    Type definitions, macro definitions and extern declarations
  302. Xshould, of course remain outside any OVLx slice.
  303. X
  304. XFinally, of course, objects whose visibility need not be extended may
  305. Xsafely continue to be declared static. And in this case, at least,
  306. Xthe compiler will provide diagnostics that inform you when an object
  307. Xhas slipped through the cracks and requires the application of Magic
  308. XMacro Salve.
  309. X
  310. XIt is perhaps less than obvious that when a function is _both_ called
  311. Xacross an OVLx split and referenced through a pointer, it should be
  312. Xtreated as a pointered function (that is, it should get trampoli
  313. Xentries and should be defined STATIC_PTR). The reason for this is that
  314. Xthe STATIC_xxx macros associated with OVLx _only_ change the
  315. Xdeclaration patterns of the objects, while trampoli results in the
  316. Xgeneration of necessary code.
  317. X    It is correct to do this, because the declarations produced by
  318. XSTATIC_PTR are triggered by OVERLAY's being defined, and the selection
  319. Xof OVERLAY is an absolute precondition for the activation of OVLx.
  320. X
  321. X
  322. X4. Hacking
  323. X----------
  324. XBefore undertaking any serious modifications to the overlay structure
  325. Xor support mechanisms, you should know that a _lot_ of work has gone
  326. Xinto the current scheme. If performance seems poor, remember: the
  327. Xoverlay manager itself can be invoked up to ten thousand times in a
  328. Xsecond, and although the space available for loading overlays (once
  329. Xthe data and stack spaces have been accounted for) is less than half
  330. Xthe total size of the overlays that are swapped through it, a disk
  331. Xaccess occurs well under 0.1% of the time(2). Furthermore, this
  332. Xperformance (such as it is) has been achieved without substantive
  333. Xchange or restructuring of the NetHack source code, which must remain
  334. Xportable to many platforms other than the PC.
  335. X
  336. XIf these observations do not daunt you, you are a true Bit Warrior
  337. Xindeed (or aspiration anyway), and we await your comments with bait.
  338. X
  339. X------------------------------------------------------------------------
  340. X
  341. XNOTES:
  342. X------
  343. X
  344. X(1) In fact, we have applied this technique throughout NetHack, even
  345. X    in cases where it is not strictly necessary (since the pointered
  346. X    calls are not across overlay splits, for example - though note
  347. X    that there are more splits than might be initially apparent, due
  348. X    to the effects of the OVLx hackage as described in section 3).
  349. X    There is, however, one exception; and beware: it is an exception
  350. X    with fangs. The file termcap.c contains a few pointered functions
  351. X    that we decided _not_ to trampoli for performance reasons (screen
  352. X    output is one of the problem areas on the PC port at the moment,
  353. X    in terms of performance). It is therefore vital to the health of
  354. X    PC NetHack as it currently stands that the OVLx slice termcap.0 be
  355. X    linked into the ROOT "overlay".
  356. X
  357. X(2) These figures are for a 4.77 MHz PC-XT running in low memory with
  358. X    an older version of both the overlay manager and the NetHack
  359. X    overlay arrangement. On a more capable computer and with the
  360. X    current software, the figures are probably more like a 100kHz peak
  361. X    service rate and a hit rate (since we fixed the bug in the LRU
  362. X    clock logic!) in excess of 99.99% -- hopefully not both at the
  363. X    same time.
  364. X
  365. X------------------------------------------------------------------------
  366. XStephen P Spackman                             stephen@tira.uchicago.edu
  367. X------------------------------------------------------------------------
  368. X                 * Hack On! *
  369. END_OF_FILE
  370. if test 17778 -ne `wc -c <'others/maintain.ovl'`; then
  371.     echo shar: \"'others/maintain.ovl'\" unpacked with wrong size!
  372. fi
  373. # end of 'others/maintain.ovl'
  374. fi
  375. if test -f 'others/splitf.uu' -a "${1}" != "-c" ; then 
  376.   echo shar: Will not clobber existing file \"'others/splitf.uu'\"
  377. else
  378. echo shar: Extracting \"'others/splitf.uu'\" \(38043 characters\)
  379. sed "s/^X//" >'others/splitf.uu' <<'END_OF_FILE'
  380. Xbegin 666 splitf.exe
  381. XM35HE !@ 4  C )H$___9 8  Y51O .$!0     $                     
  382. XM                    KRT   8 X0$* .$!#@#A 1( X0$6 .$!&@#A 1X 
  383. XMX0$B .$!)@#A 2H X0$N .$!,@#A 38 X0$Z .$!/@#A 4( X0%& .$!2@#A
  384. XM 4X X0%2 .$!-0   #X   !U    AP   .P    G 0  3 $  %X!  !I 0  
  385. XMKP$  , !  #H 0  _0$  *X"  #' @  5P0  .4$   ^!0  M 4  .T%  !)
  386. XM!@  8P8  -H&   <!P  A <  *0(   U"@  ^0H  !@+  "P"P  RPL  .8+
  387. XM  #+#   Z P  "D-  #T#0   0X  &P.  "5#P  HP\  + /  #(#P  DA  
  388. XM , 0  "=$0  ,@&/ DD"CP)_ .$!F@7A 0P&X0&J!N$!Q0?A 9$(X0$7$P  
  389. XM3!,   D O ' $P  ZA,    4  "[&P                              
  390. XM                                                            
  391. XM                                                            
  392. XM                                                            
  393. XM                          #H!A"+1@B%P'4##?__,]NI#P!T!('+ 0#1
  394. XMZ-'HT>C1Z /8BT8&CL"T2LTA<@4SP.L&D)I?&P  Z.P/R@0 N,X!CMB^  "+
  395. XM#$9&B]:[ @"T0,TAL-6T3,TAZ*X/N%< BUX&"]MU) M>"'4?Q58*5K0#B_*:
  396. XMIA   %YR#[0[S2%R!#/ ZP6:7QL  .B:#\H( .AW#XM>$(/[%'(%N 8 ZT^X
  397. XM $3-(7)#]\*  +B$ '4_BW8.BWX,A?9Y%C/),]*+1@JT0LTA<B,#QQ/6N(, 
  398. XM>!^+SHO7BT8*M$+-(7(-Q5X&B0>)5P(SP.L&D)I?&P  Z#4/R@P Z!(/BUX&
  399. XM@/__=""#^Q2X!@!S(I/HT@Z+^XO8,L N($4#+B!%!+0^S2%R!3/ ZP:0FE\;
  400. XM  #H^@[* @#HUPZX5P"+7@8+VW4D"UX(=1_%5@I6M .+\IJF$   7G(/M$'-
  401. XM(7($,\#K!9I?&P  Z,,.R@@ B^RXO &.P":A!P F"P8) '0%)O\>!P"+1@2T
  402. XM3,TA58OL'L5N!C/ /HA& !]=R@0 58OL'NAH#<5N!CZ)1@ SP!]=R@0 Z%L.
  403. XMN+P!CMB^"P"+5@ZT1\TA<CNXO &.P+\+ +E  #+ _/*NND  *]'%7@:+!SO"
  404. XM?0B)%[AO .L;D(O*N+P!CMB^"P#$?@K\\Z0SP.L&D)I?&P  Z"0.R@H Z $.
  405. XMZ%L0M!G-(8KCCL#%7@HRY$")!TB*\+L! #/V,_^*SH#Y$'T'T\,+\^L(D(#I
  406. XM$-/#"_LRTKL! +D0 +0.S2&T&<TA.L9T!(KP"_/^PM'#XNJ[ 0"Y"@"T#LTA
  407. XMM!G-(3K&= 2*\ O[_L+1P^+JQ5X&B3>)?P*,P(K<BM"T#LTAZ/,/,\#HF W*
  408. XM" #H=0VX5P"+7@8+VW4K"UX(=2;%5@Y6M .+\IJF$   7G(6L "T0\TA<@G%
  409. XM=@J)##/ ZP6:7QL  .A:#<H, -,"TP(                             
  410. XM                                                            
  411. XM                                                            
  412. XM                                                            
  413. XM                                                            
  414. XM                                                            
  415. XM                     #/ 58OL*^ >!E-14E97Q78,Q'X&,\ FB06+5A"X
  416. XM!@"#^A1R ^GF (O"Z-<++O9' R!U ^FR  O2= /IJP .'XLVSP([-M$"=7>+
  417. XM1@H]_P!V [C_ #/)+O8&7A,&=0>X_P"+#M0#H]8#B0[8 QZXTP)0'KC6 U S
  418. XMP%!0FL,2   +P'0#Z8< O],"B3[/ @,^V .)/M$"+O8&7A,&=2.R"K0&S2$S
  419. XMP+_3 H ]&G0,H=@# _C'!0T*@\<"H]0#B3[1 L1^#(LVSP*+#M$"*\X[3@IV
  420. XM XM."HO!_/.DB3;/ L5V!HD$,\#K'Y#H)@N+VHM."HO6M#_-(7,&Z"4+ZPN0
  421. XM)HD%,\#H&@OK!9I?&P  Z.<77UY:65L''XOE7<H, .@/"\5>!C/ B0>+7A"#
  422. XM^Q1R!;@& .LRBTX*"\EU$XO#Z,,*,\ N]D<$ 74=N 8 ZQC%5@RT0,TA<@K%
  423. XM7@:)!S/ ZP:0FE\;  #HXPK*#                                   
  424. XM                                 .B."KA7 (M>!@O;= /I" $+7@AT
  425. XM ^D  <5V"HL,A<FX5P!U ^GQ /=&%,C_= :X5P#IY "T L5V&IJF$   <P/I
  426. XMU0#%=A:#/ %T&2Z /G8% 70+@SS_=0;'! $ ZP:X!@#IM "T+\TA+HD>1@4N
  427. XMC 9(!;0:N@  CMJZ2@7-(8O9Q'X0Q58:BTX4+L8&=@4 _"[&!G<% (-^#B1S
  428. XM#S/ +O8&=P4!=6*X;P#K78-N#B0N@#YV!0%T(+1.+L8&=@4!S2%S-RZ!/D@0
  429. XM_P!U"5-1FE\;  !96^LQM$_-(7,=+H$^2!#_ '4+4U&:7QL  %E;ZQ<]$@!U
  430. XM$C/ ZPXNQ@9W!0'H" %+=9 SP,5V"BD<D[0:+L461@7-(9.%P'0&+L8&=@4"
  431. XMZ(D)RA@ Z&8)N%< Q78&BPR%R74#Z:D N 8 @WX0 70#Z9T +O8&=@4!=0/I
  432. XMD@"T+\TA+HD>1@4NC 9(!;0:N@  CMJZ2@7-(8O9Q'X,_"[&!G<% (-^"B1S
  433. XM#S/ +O8&=P4!=4*X;P#K/8-N"B2T3\TA<R4N@3Y($/\ =0M349I?&P  65OK
  434. XM'R[V!G<% 707/1( =1(SP.L.+L8&=P4!Z$< 2W6P,\#%=@8I').T&B[%%D8%
  435. XMS2&3A<!T!B[&!G8% NC(",H, .BE"+@& (-^!@%U$"[V!G8% W0(+L8&=@4 
  436. XM,\#HI@C* @"X  ".V(TV7P4SP":)!2:)10(FB44$)HE%!B:)11 FB442K":)
  437. XM112M)HE%"JTFB44(K2:)10RM)HE%#KD- #/ ."1T!_[ 1N+W_L@FB$46_L"+
  438. XMR(TV: 6-?1?SI,,   $  0     !      $    0 0   !0!            
  439. XM                                                            
  440. XM                            N P Z,$'QT;\  #W1@[(_[@% '5OBU8*
  441. XMN%< BUX&"UX(=6&+1@P*Y'4'0 M&#*GL +A7 '5.]\((?W5(N P B]J!XW  
  442. XM@^L0@_LP=S>+VH'C!P"#^P)W++0!Q78<FJ80  !R(/?" (!T<>A4!H#\"G(8
  443. XMQ58<BTX*M&3-(7()B4;\Z5(!Z6P!Z60!Q5X<BP^ _3IU\(#AWX#I08!_ @!T
  444. XM#X-^# &X P!TV[A7 .E$ 8K1M!G-(8KP.O)T%;0.S2&T&<TA.L:X5P!TNHK6
  445. XMM [-(;C^_RK!B4;\Z?L Z.,%@/P#<P>!X@< B58*Q58<Z $"B$;^BT8*M#W-
  446. XM(7,^/0( =2B ?OX N 4 =1SW1@P0 '0@]T8*!P!U%(M&$ M&$K@% '4#ZP>0
  447. XMZ<H Z<( N0( ZT^X;@#HHP'IN0")1OSW1@P! '0:@'[^ '0,Z$P&BD;^+HA'
  448. XM ^L#Z!$"N0$ ZRKW1@P" +AN '3,@'[^ '0/Z"@&BD;^+HA' [D# .L+N0, 
  449. XMZ(\ <J_HX@'%7A2)#XM&_.@&!HM&"BZ)!XO[M$0RP(M>_,TA<BN+WRZ 9P/?
  450. XM]L* ="3VP@%T!RZ 3P,@ZQB!XL\ @<H@ + !M$2+7OS-(7,%Z 8!ZQB+1OSH
  451. XMO04N@$\$ <5>&(M&_(D',\#K!I":7QL  #T  '44BU[\@/__= R#^Q1R![0^
  452. XMS2&X! #HTP7*&@!14HM^$(MV$H/Y W42B]\+WG4;M#Z+7OS-(7,#Z:  M#R+
  453. XM3@[-(7,#Z90 B4;\BU[\M$7-(7,#Z84 ,\F+UPO^B_AT%8O.@^H!@]D M$(R
  454. XMP(O?S2%R2KD! +1 B]_-(7(_.\&X< !U/4ET[K0^B]_-(7),,\DSTK1",L"+
  455. XM7OS-(?=&#@$ =12T/HM>_,TA<B]:4HM&"K0]S2%R)/@SP.LEFE\;  !0M#Z+
  456. XM7OS-(;0^B]_-(<56'+1!S2%8^>L'D)I?&P  ^5I9PU"<@W[\ '0,M#Z+7OS-
  457. XM(<=&_   G5C#B_*+/(M< HI,!('GW]^ X]^!_T%5=0>#^UAU6NLA@?]04G4*
  458. XM@_M.=4VX% #K2O;!_W5#@?]#3W46@?M-,74%N!  ZS2!^TTR=2RX$0#K*;@4
  459. XM ('_3%!U'H'[5#%U NL8@?M4,G4%#0$ ZPV!^U0S=04- @#K C/ PU&XS &.
  460. XMP+L, ";V!_^X  !T;[0OS2&)7O2,1O:XO &.V+H+ +0:S2'%5ARY!@"T3LTA
  461. XMN ( <BZXO &.V+X+ (M&_.CJ XM&"BZ)!XM$&HE&^(M$'(E&^HI$%2Z(1P(S
  462. XMP"Z 3P0"D[0:Q5;TS2$+VW0/4XM&_.BW RZ 9P3]6.L!D\56'%G#N 0 Z-$#
  463. XMBUX*@_L4<@:X!@#IH@"+1@KHCP.X!@ N]D<#\'0#Z8\ BUX*,\F+T;1"L '-
  464. XM(7)[B4;\B5;^B]&T0K "S2%R:XM."(7)>06X5P#K9#O*BU8&=QAR!#O0=Q*T
  465. XM0K  S2%R2K1 ,\G-(7(EZQ^T0K  @^H!<P%)S2%R,K1 N0$ S2%R##T! +AP
  466. XM '4),\#K!9I?&P  4(M._HM6_+1"L "+7@K-(7(#6.L(@\0"FE\;  #H.0/*
  467. XM!@#H%@.+7@Z#^Q1R!;@& .LKN !$S2%S NL=Q%X*)L<'  #VPH!T"R;'!P$ 
  468. XMQ%X&)HD7,\#K!I":7QL  .CX LH* .C5 O=&!O__= :X5P#K+9"+1@P+P'4#
  469. XM#?__,]NI#P!T!('+ 0#1Z-'HT>C1Z /8M$C-(7('Q5X(B0<SP.BV LH(    
  470. XM             (D.  0 !            (\.  4 !0           )4.  8 
  471. XM!@           )L. !   @           *$.     .A% HM>#KYS#;D% "XY
  472. XM''03@\8/XO:X,@"#^P=T [@! .F> "Z /KX- 706+L8&O@T!N@  CMJZR Z[
  473. XM% ":D1,  "Z ? X!=3;%7@8NBT0(B0<NBT0*B4<"Q58*C-@+PG43+HM$ K0E
  474. XM+L54!,TA+L9$#@#K2RZ)5 @NC%P*ZT$NBT0"M#7-(2Z)7 0NC$0&A]/%7@:)
  475. XM%XQ' L56"HS8"\)T'BZ)5 @NC%P*N@  CMHNBU0,+HM$ K0ES2$NQD0. 3/ 
  476. XMZ* !R@H ^R[_+GL-^R[_+HH-^R[_+ID-^R[_+J@-4"[=/K\-+J&_#3W__W02
  477. XMJ8  = U5B^R'1@)=^R[_+K<-6"[_+K,-'E!345:^<PVY!0 SP([8+H!\#@%U
  478. XM&BZ+7 +1X]'C+HM$!(D'+HM$!HE' B[&1 X @\8/XMI>65M8'\L  %6+["ZA
  479. XM P^+Y5W#                4%-14E97'@8.'RZC P\NB1X:#[X0#[1C,L#-
  480. XM(;D%  X'OQ /\Z6T1#+ ,]O-(7(0@.*!@/J!=0B[X <N@$\#(.CY .AF @<?
  481. XM7UY:65M8RU-6'HK8"MMT&OP.'[X0#ZT+P'0/.MAR]SK<=_/YBL,?7EO+# 'K
  482. XM]IIK#P  <P:*X*P*P/G+FI(/  !S!70#AN"KRYJ2#P  <P9T!$EU 4[+4(;@
  483. XMXQ@FB@5'29IK#P  <@8ZX'0+Z^SC!$=)Z^:#^0%8RU RY+,%]N.[X <#V%C#
  484. XM+H\&SQPN_P;-'"[_)L\<+H\&SQPN_P[-'"[_)L\<,\ NCP;/'%6+["O@'@93
  485. XM45)65R[_!LT<+O\FSQPN_P[-'.BC#"Z/!L\<7UY:65L''XOE72[_)L\<    
  486. XM            Z"L G"[_'DH0SU!3!AZX)#7-(2Z)'DH0C, NHTP0C19.$ X?
  487. XMN"0ES2$?!UM8PRZ!/D@0_P!T("['!D@0_P!04U&:7QL  "ZC0A NB1Y$$"Z)
  488. XM#D8065M8PU974U%2,O^*W#/_,]+\K(3 =0/IFP!'FFL/  !S ^F# #PZ="8\
  489. XM+W1!/%QT/3P@=#D\.W0U/"YT23PJ=0/I@@ \/W1^BLCKQNF: (3_=?F#_P%T
  490. XM](/_ G?OA/9UZX#)((#Y87+C@/EZ=]Z$_W0/@_\$=@/IFP R_S/_ZR&0@_\)
  491. XMZ^^$_W0/@_\!=@/K6)"W 3/_ZPF0@_\)=O3K=9 R]HK(Z6K_K(3 = A'M@&*
  492. XMR.E=_X3_= B#_P-W5_CK7X/_".OV]L,!=1ZR 3PJ=="$_W0*@_\#=SN_ P#K
  493. XMPH/_"'<QOP@ Z[B ^P)S&ZR$P'4%N ( ZR>::P\  '(//"]T!CQ<= +KY;@#
  494. XM .L1K(3 =.#KV;C. (32= .XT #Y6EE;7U[+4%-14C/)M$0RP(O9S2$]!@!T
  495. XM.8O#Z/W]+H!/! 'WPH  =#,N@$\#$/?"! !T!2Z 3P. ]\(" '0%+H!/ T#W
  496. XMP@$ =!(N@$\#(.L+D(O#Z,3]+H!G! !!@_D4<JJX P#HL_TN]D<#$'01+O9'
  497. XM X!U"BZ 3P,(+H!G _RX! #HE?TN]D<#$'01+O9' X!U"BZ 3P,$+H!G _Q:
  498. XM65M8PP!04C+ M#/-(2Z(%F42_L RTLTA6EC#4%(NBA9E$K !M#/-(5I8PV-O
  499. XM;@   +1%,]O-(7(5+J.0$K0^S2&,R([8NHP2L "T/<TAP[1&+HL>D!(SR<TA
  500. XM<@6T/LTA^,,SP%6+["O@'@9345)65^B^_W)S_,1^#L5V"HL,@?G_ +AX 7=5
  501. XM+O8&7A,&=":+=@B#_@&X=P%W4S/2XS6T"\TA"L!U! OV=2FT!\TAJD+BZNL?
  502. XMD+B\ 8[8N@L B_*(#+0*S2%&BA1&,\F*RO[!\Z0R]L1^"B:)50(SP(O0Z&[_
  503. XM<@6+PNL&D)I?&P  Z( )7UY:65L''XOE7<H,  D     "0     !      D 
  504. XM    !P     '      D     "@     "             !X&5U.-/E\3+HD1
  505. XM+HQ9 B[V000!="PN]@:/$P%U)%.X(S7-(2Z)'G@3+HP&>A.[  ".V[I+%+@C
  506. XM)<TA+H .CQ,!6R[V000"=#@N]@:/$P)U,"['!GT3N!2X   NHW\3N"0US2$N
  507. XMB1Z'$RZ,!HD3NP  CMNZDA2X)"7-(2Z #H\3 EM?!Q_+5XT^7Q,NQP$  "['
  508. XM00(  %_+C39?$S/;+O9 ! 1T#"Z+ "X+0 )T R[_&(/#!8/[*'+ERR[&!I 3
  509. XM 5!3C1Y?$RZ*1P0NA :0$W0K+HL'+@M' G0B+O9'! AT%BZ+!RZCBQ,NBT<"
  510. XM+J.-$UM8+O\NBQ-3+O\?6X/#!>O%+H,^@A, =0@N@SZ$$P!T!2[_+H(3G"[_
  511. XM'H<3+L8&D!,"/ )TFL^X @#/      $  @ #  0                     
  512. XM                                                  4  P,!50 ,
  513. XM P.W  P# 0< !P4%H  )! $6  D$ 7< !P0""@ '! 4+  D$ 1@ "00!H0 )
  514. XM P&?  D$ 10 " ,!;0 -! %O  <!!8X # ("4@ !! *Y  @" 8$ " (!%P %
  515. XM 0(0  ,# H( #@0"D0 . P*0  X# IT " 0%:P + P)P  $# FP "@("40 -
  516. XM! %<  T$ 5L #00!90 , @%3  T$ 2,  00"4  , P("  @# A\ #00!>@ '
  517. XM! %?  T! 0P !P0!:  '! $)  <$!;4 !P0!=0 '! $-  D$ 0\ " ,"EP )
  518. XM! &Z  D$ 0$ !P0!!@ '! %\  D$ 9D "00!>P ) P&V  D$ 5< "0,!5@ #
  519. XM P&T  D$ 7( !P0!=@ '! &&  X# 9, #@,!A0 . P&'  X# 9( #@,!E0 .
  520. XM P&*  X# 8P #@,!F@ ) P(A  H" GX " ,!@P '! )8  4$ QH "P<""  !
  521. XM! 5:  X$ 8@ #@0!G@ .! $5  X$ 1$ #0,"B0 . P$R  D# [@ " 0!70 (
  522. XM! $2  @# G$  00!60 ! @%]  @$ 6X " ,!'  !!P%4  $$ 90 # ,! P (
  523. XM P)_  @$ 7,  P0!'@ %! */  X# 1L " 0"&0 %!P*$  X$ 68 # 0!NP (
  524. XM! %I  T$ 7D #P0!:@ !! $D  $$!2  "@("H@ . @&<  X$ 8T #@,!BP .
  525. XM P&6  X' 9@  00!!  !! %D  $$ 6<  00!FP !! %T  <$ 8  " 0!'0 %
  526. XM! (3  ,' B( "P<"+P$'! $P 0<$ 3$!!P0!,@$#! $S 0<$ 30!!P0!-0$'
  527. XM! $V 0<$ 3<! 00%. $'! $Y 0<$ 3H!!P0!/ $'! $] 0@$ 3X!#@0!/P$)
  528. XM! %  0<$ 4$!#@(!0@$.! %# 0<$ 40! 0(!1@$'! %' 0D# 4@!!@0!20$-
  529. XM! %* 0,$ 4L!#00!3 $,! %- 0@$ 4X! 0(%3P$)! %0 0<$ 5$!!P0!4@$-
  530. XM! %3 0T$ 50!#00!50$-! %6 0X" 5<!" 0!6 $-! %9 0T$ 5H!#00!6P$-
  531. XM! %= 0<$ 5X!!P0!7P$'! %@ 0<$ 6$!!P0!8@$'! %C 0<$ 60!!P0!90$'
  532. XM! %F 0<$ 6<!!P0!: $-! %I 0T$ 6H!#00!:P$-! %L 0T$ 6T!#00!;@$'
  533. XM! %O 0<$ 7 ! P0!<0$'! %R 0$$ 7,!" 0!= $.!@%U 0<$ 78! 00!=P$'
  534. XM! %X 0<$ 7D!!P0!>@$'! %[ 0<$ 7P!!P0!?0$'! %^ 0$$ 7\!" (!@ $!
  535. XM! &! 0<$ 8,!!P0!A $.! && 0X$ 8D!" (!BP$'! &, 08$ 8T!!@0!C@$'
  536. XM! &/ 0<$ 9 !!@0!D0$&! &2 0,$ 9,!!P0!E $'! &5 0<& 98!"@(!EP$#
  537. XM! &8 0<$ 9D!!P0!F@$,! &; 0<$ 9P! P0!G0$'! &> 0<$ 9\!# 0!H $'
  538. XM! &A 0<$ :(!# 0!HP$-! &D 0T$ :4!!P0!I@$,! &G 0P$ :@!#00!J0$-
  539. XM! &J 0P$ :L!#@0!K $'!@&M 0<$ :\! P0!L $'! &Q 0<$ ;(!# 0!M $'
  540. XM! &U 0X$ ;8!!P0!   -! 'H,O8SR>L*D$&#^05R ^F- (O9T>,NB[>^%(O>
  541. XMB\/1X]'C ]C1XRZ#O] 4 70"Z]B+1A(N.8?(%'0"Z\S$7@Z+_HO'T>?1YP/X
  542. XMT><NBX7*%":)!\1>"BZ+A<P4)HD'Q%X&+HN%SA0FB0<NQX70%   B]'K I!"
  543. XM@_H$<@/K%9"+VM'CB_K1YRZ+A< 4+HF'OA3KXXO:T>,NB;>^%.LSD :+1A*Y
  544. XM^ "^_!0N.P1T"(/&!>+V@^X%*N0NBD0"Q'X.JRZ*1 /$?@JK+HI$!,1^!JL'
  545. XM,\#H??7*#@!04U%25E=14U STC/)ZP*008/Y!7(#ZRJ0B]G1XRZ+M[X4B]G1
  546. XMXRZ+G[X4B\/1X]'C ]C1XRZ#O] 4 '0"Z]&Z 0"#^@!T ^LQD"Z+-KX4,\GK
  547. XM I!!@_D$<@/K%9"+V='CB_G1YRZ+A< 4+HF'OA3KXXO9T>,NB;>^%(O>B\/1
  548. XMX]'C ]C1XU@NB8?(%%HSP(K&+HF'RA2*PBZ)A\P46HK&+HF'SA0NQX?0% $ 
  549. XM7UY:65M8RRZC^A3HG_. _ -] ^M"D%97!AY24;19,]O-(5J*REH?!U]>/5, 
  550. XM=2$N@3Y($/\ =1@NH4(0+HL>1! NBPY&$"['!D@0  #K&I NH_H4ZPJ0+J'Z
  551. XM%+L$#;4!FJP:   NH?H4RS/ ,]O+*10                             
  552. XM                                                            
  553. XM                                                            
  554. XM                                                            
  555. XM                                                            
  556. XM                                                            
  557. XM                      #K ,,               !G %1H92!!<'!L:6-A
  558. XM=&EO;B!0<F]G<F%M($EN=&5R9F%C92 H05!)*2!E;G1E<F5D#0IW:6QL(&]N
  559. XM;'D@=V]R:R!I;B!-:6-R;W-O9G0@3W!E<F%T:6YG(%-Y<W1E;2\R(&UO9&4N
  560. XM#0H         - !365,R,#DP.B!4:&4@<WES=&5M(&ES('5N86)L92!T;R!L
  561. XM;V%D('1H92!P<F]G<F%M+@T*                                    
  562. XM                                                            
  563. XM                                                            
  564. XM                            =@   &8!  #: P  ]P0  #$-        
  565. XMA $  %@   "/    ]    "\!  !A!P  > 4  #0,  !$"   JP$   4"  "1
  566. XM @  \ P  ,$-  "6 0                        8 <W!L:71F &4 M##-
  567. XM(8;@+J/Y"3T  G,;N,X!CMB^< "+'$9&QP D (O6M G-(08SP%#++HP._0DN
  568. XMC!;_"2Z,!@$*)J$" "ZC^PDFH2P +J,8"K1*N___S2$]" !T ^G1!+1*S2%S
  569. XM ^G(!(S  ]@NB1X+"KYO#2Z+3!PSP(O8+HM4$"X#5!*#TP N W0B+@-4!H/3
  570. XM "Z#? 8 =0%#@\(/@], @.+P@\8(XN/1V]':T=O1VM';T=K1V]':C,@#PCT 
  571. XMH'(&N @ Z6D$+J,#"HOHN&\-B_ %#P#1Z-'HT>C1Z 4@ "Z+7!S1X]'CB]/1
  572. XMXP/:+@,>  "#PP_1Z]'KT>O1ZXO+ \@NB0Y4 "Z+%@L**]$[U7*O@>H !CO5
  573. XM+HL6"PIR"X'J  8N@094   &B_"+^RZA 0J+VBO8*]E+CL"T2LTA<P/I[ .+
  574. XMV;1(S2%S ^GA X[ +J,-"HO0B\:+WP/3B\C1X='AT>&.PC/_C,J.VHOW_/*E
  575. XMC,",PBO3B\O1X='AT>&.PC/_OF\-\J6.V(P&!0J[;PV#PP_1Z]'KT>O1ZP/8
  576. XMCM.\  )0N!("4,N,R8[!CMF)#AX*+J$!"BZ+'O\)*]B.P+1*S2%S ^EF RZ+
  577. XM%@4*CMHS]HOL@^PZZ+0(Z(8#Z!X)Z , Z8X*N4  *^&+_!8'\J2+W#:!/TY%
  578. XM=1 V]T<, "!U"#;W1PP @'0%L OI( .+W.BK H/$0.A4 *$6 .@K XM$"(E&
  579. XMUJ$4 (E&U*$: .@9 XM$"(E&[(L>& "A#@ [!AH =1$+VW4-BUP(BT0& P82
  580. XM )/K!NCR HM$"('C_O^)7NJ)1N"T/HM>^,TAP[@! #L&' !W"^@\!8M&YHE&
  581. XMZ.OOM$B[___-(3T( '0#Z9X"+BL>5 !R-8/K G(P@?N  '(J@?O_#W(#N_\/
  582. XMM$C-(7,#Z7H"+L<&5@ ! "ZC6@#1X]'CT>/1XRZ)'E@ QT;D 0".7N*+#AX 
  583. XMXP2+-@8 BT;D.P8< '<+Z& "Z!H _T;DZ^PN]P96  $ = L&M$DNC@9: ,TA
  584. XM!\.)=NJ+1 B)1O*+% O2=0/K=Y SP(L.,@#1XM'0XOJ+R.B+!8MVZHY>XO=$
  585. XM! @ =$T6'[D$ "OAB]3HWP6+=NJ.7N*+3 *#Z02.7O(STNC+!5A?CD;R]^<+
  586. XMTG0&N L Z<8!"\!T(XMVZHY>XCM$!G?K*\>+R(Y>\C/V\Z3K"XM, HY>\C/2
  587. XMZ),%BW;JCE[B]T0$  %U ^F\ (S3CMM1B]2Y @#H=@59"\EU ^FG %&,TX[;
  588. XMC5;4N0@ Z& %CE[BBD;5) ,\ '4;BT;8,N2+7MH\_W0(Z&T!BU0(ZR2+P^AY
  589. XM ^L=/ )T!#P!=2LNBS8)"M'FT>8N_P8)"B[$G 0 C,+H60#K2\T\/\T\7\T\
  590. XMG\T\_S)< #VB/ -T ^D__XMVUHY>\HM&V$@]!0!V ^DM_[MU! /8 ]@#V#T$
  591. XM '('+HL' 03K#"Z+!XD$+HI' B!$ EE)Z5+_CE[BBW;JPXMVUHY>\O9&U01T
  592. XM!>@. .L+_S3H!P!>@_[_=?7#BD[4@.$'@/D#= J ^0!T*(#Y!74/]D;5!'0$
  593. XM 1SK HD<@\8"@/D#= 6 ^0)U$/9&U01T" $4ZP8 '.L"B13#+J$%"HE&XHE&
  594. XM]H[8BQX< (O+T>,#R]'CT>/1X='A2TF.1N(+VW1(+HLV  "+_@/Y40$.)  !
  595. XM#B8  0XH  $.*@ !#@0 B\\K#B0 _?*D68LV(@"+_@/S _DSP(L.' "+V;D(
  596. XM *JJJJKSI(O+XO'\PU"XS@&.V+YP (L,1D:+UKL" +1 S2%8M$S-(<,RY O 
  597. XM= ](T>#1X(OPT> #Q@,&(@"+\,-6'K0PS2&&X"ZC^0D]  )S ^F>^CT  W,#
  598. XMZ98 N?_O+HX&& HSP(OX\JZN=?M'1RZ)/@<*B_<NCAX8"K0!FJ80  !S NN&
  599. XMB]BLZ"P%<P5U^.EY_SQ<= @\+W0$/#IU XO^3SK#=>(N*S8'"E>,R8[!OV,*
  600. XMB\Y1+HLV!PKRI(S*CMJZ8PKH,@%>67(#Z2(!+CLV!PJX>P!T ^D; 2Z.'@$*
  601. XMO[ *+HD^* HNC XJ"O*DZVF0C,J.VKYF "Z+#F0 C,J.PK]C"O*DN"Y%J[!8
  602. XMJS+ JH[:NF,*5K0!B_*:IA   %YS ^GF_NC0 '(#Z<( +HX>!0J+-B8 B@PR
  603. XM[4:_L HNB3XH"BZ,#BH*+HX&*@KRI+@N1:NP6*LRP*HNC@88"NBL "Z)-B0*
  604. XM+L46* HNC@8J"K]C"C/)K.A*!',(=0/IB_Y!Z_(*P'0-/#MT"3/)/"!TY*KK
  605. XMX0O)=1>!_V,*=$TF@'W_7'0*)H!]_R]T [!<JBZ)-B0*+L4V* HNB@XL"C+M
  606. XM\Z0&'[IC"E(>5>@K %T?7G,=+HX>& HNC@8J"BZ+-B0*"_9T!H!\_P!UA; "
  607. XMZP:)1O@?7L/I$_XNH?D)/0 #<@:X(#WK!)"X #W-(<.,P>,;#A\S_[D% +[H
  608. XM"O.F=!!/N?_O,L#RKB8X!77I,_;#B_<&'[0#FJ80  !RN<,+P'1,2(LV!  S
  609. XMVXH<1@O;=#X[PW(9*\-0K K = [^P+@# '4#N 8 ]^,#\%CKVHO8K#S_=1JX
  610. XM!@#WXP/PB_Z+702*10/HHOV+5 @+TG0!P[ +Z7G]]P8,  " = /I[P")1NCH
  611. XMA/V+1NA B4;F2(M\!#/2,\GK&4% B4;F.P8< '8#Z;T Z&+]BT;F.WP$=5.+
  612. XM7 8+VW3@.UP"<P/IL  [!@X =3X#'A  <P<+VW0#Z9$  QX2 ','"]MT ^F$
  613. XM '0?48O+FL(;   +P'0#ZWJ0.\MR HO968'[R !S [O( (E>W@/3@]$ "]MU
  614. XM 4&#P@^#T0"#^0]V ^M/D-'JT>K1ZM'JT<G1R=')T<D+T8O:M$C-(7,#ZS*0
  615. XMCL"+V(M&Z%#HQ_Q8B5P(@<, $$ [1N9R[HM,!HM\ BO/,\#1Z?.K<P&JP[C'
  616. XM .F%_+@( .E__+@+ .EY_"[W!E8  0!T5(O!B]HN*QY@ "X;!F( <@L+P'4'
  617. XM+CL>7@!R,(M>^#+ M$+-(7(K+J-@ "Z)%F( +HX>6@ STBZ)%EP +HL.6 "T
  618. XM/\TA<@LNHUX PRZ)'EP P^D<_(M>^#+ M$+-(7)OB\J+T,,N]P96  $ =%>,
  619. XMV([ B_HNCAY: "Z+-EP +J%> "O&.\AV,"O(D='I\Z5S :2143/2+HD67  N
  620. XMBPY8 (M>^+0_S2%9<@LNHUX "\!UQ[@T$NFY^]'I\Z5S :0NB39< ,.+7OBT
  621. XM/\TA<@'#Z9_[                                                
  622. XM    @                                                       
  623. XM                                                            
  624. XM                                                            
  625. XM                                                            
  626. XM                        +D5810!0051(/0            !04U%25E<>
  627. XM!@X?ONT*M&,RP,TAN04 #@>_[0KSI0<?7UY:65M8PU-6'HK8"MMT&OP.'[[M
  628. XM"JT+P'0/.MAR]SK<=_/YBL,?7EO## 'K]NC6_W,&BN"L"L#YP^CQ_W,%= .&
  629. XMX*O#Z.;_<P9T!$EU 4[+5AXNC@8!"B:A+ "+T"Z)%A8*2([8BPX# -'AT>'1
  630. XMX='A+HD.#PJ.PC/ ,__RKDFN=?HNH?D)/0 #<A",P([8B_=&1C/ 23H$I'7Z
  631. XM+HD^!PHNBQX/"BO9+HD>$0J,R8[!CMF_8PJ+]RZA^0D]  -S%3/ N8  \JZ!
  632. XM[V,*+@$^$0HNB3X3"HO6K.A2_W,%=?CIG_D\.G3O/"]TZSQ<=.<*P'7EN0D 
  633. XMB_*LFEL+X0%S"70$XP_K\NEY^3PN= 8*P'0"XN4K\BX!-A$*+HD6&@HNB38<
  634. XM"BZ.!@$*OX  )HH-,NV+V2: .0UU!":(*4E!02X!#A$*+J$1"BZ+#@\*.\%S
  635. XM ^MQD 4/ -'HT>C1Z-'HB]"+V":+#BP CL&T2LTA<@/K4I"+VK1(S2%S ^D$
  636. XM^2ZC%@HNBPX%"CO(<PZ,T8/!(#O(<A"P".GI^ /".\AW!; (Z=[X+HX>& HN
  637. XMH18*CL S_XOW+HL.#PK1Z?*EC-J.PK1)S2$?7L,NC@86"BZ+/@<*C,J.VHL.
  638. XM$PKC!;YC"O.DBPX<"DF+-AH*B3X:"O.D,\"JCAX!"KZ  *R*R#+MXP+SI#+ 
  639. XMJJJ,!BP +J'Y"8S;FAP/  ".7O:+%A( BS80 (M&X([8BT[>BT;6BU[4BW[L
  640. XM^HMFZH[7^U!3+J$6"BZ+'AH*4%,NBQX-"H[#M$G-(3/M,_^.Q5M8RTY%!0%F
  641. XM  ( (>)T6 (  @      &@4! " : @ "  $ #@!  %  4 !: %P %RX     
  642. XM"0    $            8 %<O  U8+S$ NPD!#2 :!E-03$E41@    $   A$
  643. XM3U-#04Q,4P  "E-03$E41BY%6$4                                 
  644. XM                                                            
  645. XM                                                            
  646. XM                                                            
  647. XM                                                            
  648. XM                                                            
  649. XM                                                            
  650. XM                                                            
  651. XM                                                            
  652. XM                                                            
  653. XM                                                            
  654. XM                         %6+[+@@ .C]!KA" %#H?@Z#Q *XAP!0Z'0.
  655. XM@\0"@WX$ GP&@WX$ WXYN,4 4.A>#H/$ KCP %#H5 Z#Q *X+@%0Z$H.@\0"
  656. XMN&4!4.A #H/$ KB! 5#H-@Z#Q *XNP'I7@&0N%P 4(M>!O]W NC[*(/$!(E&
  657. XMX O =0N+7@:+1P*)1N#K _]&X/]VX+@(#E#H'22#Q 2X+@!0N @.4.A?*(/$
  658. XM!(E&X O = O_1N"+7N#&!P#K#KC; 5"X" Y0Z*\C@\0$@WX$ W5:N-T!4(M>
  659. XM!O]W!.A3*(/$! O =!2XX %0BUX&_W<$Z#\H@\0$"\!U,NC% XM>!O]W KCC
  660. XM 5#HC@V#Q 2+7@;_=P+H' *#Q +_-O )Z$()@\0"Z-X#N/L!Z9T Z),#N ,"
  661. XM4(M>!O]W N@2"H/$!*/V"0O =0:X!@+K?I"-1N)0BUX&_W<"Z,,J@\0$"\!T
  662. XM!K@B NMDD(-^! -U#HM>!O]W!.CS(X/$ NL5N ( F5)0_W;R_W;PZ/DL!0$ 
  663. XM@]( H_()B1;T"0O2?PQ\!3T! ',%N#4"ZR.+7@;_=P*X2P)0Z.4,@\0$Z!D 
  664. XM_S;V">BB"(/$ N@^ [A? E#HRPR+Y5W#D%6+[+@( .@U!>AB @O =1BX;@)0
  665. XMZ*\,@\0"N* "4.BE#(/$ HOE7<.XS@)0N/@-4.A)"8/$!*/P"0O =1.X^ U0
  666. XMN-$"4.A^#(/$!(OE7<.0H?()BQ;T"8E&^HE6_,=&^ $ @W[\ 'T#Z<L ?PF#
  667. XM?OH =0/IP "#?O@ =0/IMP"+1OJ+5OR+#FH"*]L[TW(*=P0[P78$B].+P8E&
  668. XM_O\V]@E0N $ 4/\V; +H^ B#Q B)1OB+'O8)]D<&('08N/@-4+CR E#H_PN#
  669. XMQ 3_-O )Z+\'Z4W__S;P"?]V^+@! %#_-FP"Z*0*@\0(BQ[P"?9'!B!T#;@5
  670. XM U#HS N#Q +KRY"+1O@KTBE&^AE6_(M&_CE&^'4#Z4S_N/@-4*'R"8L6] DK
  671. XM1OH;5OQ24+@W U#HE@N#Q CKE9#_-O )Z%,'@\0"N/@-4*'R"8L6] DK1OH;
  672. XM5OQ24+A4 U#H; N#Q CIJ?Y5B^RX @#HU0/H @$+P'4#Z?< N'$#4+CX#5#H
  673. XM_@>#Q 2C]@D+P'4.N'0#4.@W"X/$ HOE7<.XA -0_W8$Z-P'@\0$H_ )"\!U
  674. XM!KB' ^O<D,=&_@$ BQ[V"?9'!A!T.[CX#5"XZ -0Z/P*@\0$_S;V">B\!H/$
  675. XM NB4  O =0/IB0"X#010N/@-4.B0!X/$!*/V"0O =;J+Y5W#@W[^ '2__S;V
  676. XM"?\V:@*X 0!0_S9L NB1!X/$"(E&_HL>]@GV1P8@=!FX^ U0N*,#4.B8"H/$
  677. XM!/\V]@GH6 ;I5/^0_S;P"?]V_K@! %#_-FP"Z#P)@\0(BQ[P"?9'!B!U ^E7
  678. XM_[C& U#H80J#Q +KQXOE7<-5B^RX! #HQP*!/F@"YP-^!RO B^5=PY"X" Y0
  679. XMN/@-4.A5((/$!+@* %"-1OQ0_S9H NA+(8/$!HU&_%#H:R"#Q (] 0!U!;@0
  680. XM!.L2C4;\4.A7((/$ CT" '4.N!,$4+CX#5#HTA^#Q 2-1OQ0N/@-4.C$'X/$
  681. XM!/\&: *X__^+Y5W#,\#H20+K%I#_-FH"Z$D=@\0"HVP""\!U#-$N:@*!/FH"
  682. XM  %SXX,^; ( =12X%010Z*,)@\0"N ( 4.AR 8/$ L.0,\#H!P+_-FP"Z/@<
  683. XM@\0"P_R))D8$B29*!(P>3 1)B0Y$!*-"!(D>0 10B\064)K__P  6(;@HV8%
  684. XMN&@%'E":__\  .@U .BC .CX >AC _\VF07_-I<%_S:5!>BH^E#H"P&X P V
  685. XMQP9(!'<&4.AV >CG [C_ %#_%D@$NPT @#YH!0!U"\8&3 4[Q@98!0!+,_^.
  686. XM!D($N?]_)H ] '4!1R: /0!T0[Y,!8O1B\OSIHO*= @SP/*N=.?K+@8>!XOW
  687. XM'[]M!8/[#744L02L+$%R&=+@DJPL07(1"L*JZ^ZLF)&L_L!T 4BJXO<6'\.[
  688. XM @!2B]2 IVT%MU"+Q%,64!92FO__   +P%AU$K% /0$ = <] @!U!K$("(]M
  689. XM!4MYU%HSP%!0B]Q0NFP%#E(64YK__P  6%B+#JH(XRF+-D($Q0:L"(S:,]LV
  690. XM_QZH"',%%A_IM  VQ0:P"(S:NP, -O\>J @6'[ZT"+^T".AJ ,-5B^R^Y F_
  691. XMY GH70"^M B_M@CH5 #K U6+[+ZV"+^V".A& +D1 +L# /:';04!= 93FO__
  692. XM  !#XO#H>0 +P'0+@WX$ '4%QT8$_P#H#0"X 0!0BD8$4)K__P  BPZJ".,'
  693. XMNP( _QZH",,[]W,*3T^+#>/V_]'K\L, 58OLN/P 4.AJ H,^H@4 = 3_%J(%
  694. XMN/\ 4.A8 HOE7<.X @#I8/Y9B]PKV'(*.QZD!7($B^/_X3/ Z4K^5C/VN4( 
  695. XM,N3\K#+@XON ]%5T#>BN_[@! %#H&P*X 0!>PX\&J 6A0 2.'D($B_!.= : 
  696. XM?/\ =?<VB3:;!3:,'IT%EO8$_W4!EC:)-J8%,]*_ 0"L0@K =?JL/"!T^SP)
  697. XM=/<*P'1C1TZL/"!T[#P)=.@*P'14/")T)#Q<= -"Z^@SR4&L/%QT^CPB= 0#
  698. XMT>O7B\'1Z1/1J %USNL!3JP*P'0G/")TPCQ<= -"Z_ SR4&L/%QT^CPB= 0#
  699. XMT>O?B\'1Z1/1J %UUNN?%A^)/I4% ]='T>>+QP/")/[HCP%S!K@( .EE_:.7
  700. XM!8O8 _@6!S:)/T-#BS:F!8X>0@2LJ@K =?KK S/ JJP\('3[/ ET]PK =0/K
  701. XM<9 VB3]#0TZL/"!TXCP)=-X*P'1:/")T)SQ<= .JZ^@SR4&L/%QT^CPB= :P
  702. XM7/.JZ]6P7-'I\ZIS!K BJNO)3JP*P'0J/")TOSQ<= .JZ_ SR4&L/%QT^CPB
  703. XM= :P7/.JZ]VP7-'I\ZISGK BJNO1,\"J%A_'!P  _R:H!8\&J@6.!D($,\ S
  704. XM]C/_N?__)CH%= ;RKD:N=?I&B\= )/Z+_M'F \;HL0!S!K@) .F'_*.9!8O/
  705. XMB_@#_HO8!A\S]A8'2>,FBP0F.P9,!7404597OTP%N08 \Z=?7EET!2:)/T-#
  706. XMK*H*P'7ZXMHFB0\6'Q8'_R:J!56+[%97N/__CMB.P(M6!+Z^"*T[PG000)9T
  707. XM#)<SP+G___*NB_?KZY9?7HOE7<(" %6+[%?_=@3HQO\+P'0?DHOZ,\"Y___R
  708. XMKO?125"+Q+L" %,>4E$64)K__P  6U^+Y5W" @!:BQY*! /8<B8['D0$<AF+
  709. XMRTF R0]!4%$>FO__  "%P%AU#$F)#D0$AQY*!/CK#HO<*]AR"#L>I 5R HOC
  710. XMB\/_X@ !%@(" P($& 4-!@D'# @,"0P*!PL(#!8-%@\2$ T1$A("4@U3#5<-
  711. XM60ML#6T@<!QR"086@ J!"H()A VD"\X"UPL #0@6HVD%B19B!;C__YF+Y5W#
  712. XMZ @ N/__F8OE7<.C:06[V@FY(0 N.@=T%D-#XO<\$W($/"1V"D,\O'($/,IV
  713. XM 4,NBD<!F*-B!<, 58OL@^P05U:+=@2____V1 :#=0/IEP#V1 9 = /IC@!6
  714. XMZ! )@\0"B_B+WH'KL@6Q ]/[B\/1XP/8T>.+AU8&B4;\5NA"!H/$ HI$!YA0
  715. XMZ%,2@\0""\!\4X-^_ !T4+BL!5"-1O)0Z.T9@\0$C4;TB4;^B]B ?_Y<=!"X
  716. XMK@50C4;R4.B1&8/$!.L#_T[^N H 4/]V_O]V_.C$&H/$!HU&\E#H8".#Q (+
  717. XMP'0#O___QD0& (O'7E^+Y5W#58OL@^P$5U:^L@4K_^L5D/9$!H-T"U;H8 B#
  718. XMQ ) = %'@\8(.3;*!G/FB\=>7XOE7<-5B^R#[ )6Z'01B_ +]G005O]V!O]V
  719. XM!.@<!H/$!NL#D"O 7HOE7<.058OL@^P*5U:+=@J+1@;W9@B)1OZ)1OR#?@8 
  720. XM= :#?@@ =0>+1OSIMP&0]D0&#'0#Z9X B]Z!Z[(%L0/3^XO#T>,#V-'C]H=2
  721. XM!@%T ^F" (I$!YB+V/:';06 =4;W1OS_ 74_@W[\ '4#Z<8 F(E&]O]V_/]V
  722. XM!/]V]N@T$X/$!HOX"_]U ^DY 8/__W4#Z3$!*7[\ 7X$@W[\ '4#Z9, Z\^0
  723. XM_TP"> N+'/\$B@<JY.L(D%;HJ *#Q *+^$!U!BO Z1T!D(M>!/]&!(O'B ?_
  724. XM3OSV1 8(= /IAP"+WH'KL@6Q ]/[B\/1XP/8T>/VAU(& 74#Z:0 ZVF!?OP 
  725. XM G))BT;\L0G3Z-/@B4;Z4/]V!(I$!YA0Z)D2@\0&B_@+_W0%@___=1N#__]U
  726. XM ^F< + 0"$0&BT;^*T;\*]+W=@;IH  I?OP!?@3K&5;H$@*#Q *+^$!TWHM>
  727. XM!(O'B ?_1@3_3OR#?OP =,N#? ( =(N+1 (K1OP;R2/! T;\B4;Z4/\T_W8$
  728. XMZ/P<@\0&BT;Z 00!1@0I1OPI1 +KR)"#?OP =)**1 >8B4;V_W;\_W8$_W;V
  729. XMZ/T1@\0&B_@+_W0%@___=0V#__]T ^ED_[ @Z6'_*7[\ 7X$@W[\ '4#Z57_
  730. XMZ\B07E^+Y5W#58OL@^P(5U:+=@2+?@J+1@;W9@B)1OZ)1OR#?@8 = :#?@@ 
  731. XM=08KP.D+ 9#V108,=66+WX'KL@6Q ]/[B\/1XP/8T>/VAU(& 75,]T;\_P%U
  732. XM(/]V_%:*10>84.B\$H/$!HE&^#W__W2]*]+W=@;IQ0"0_TT"> N*!(L=_P6(
  733. XM!^L,D%>*!)A0Z*X!@\0$]D4&('631O]._/9%!@AU0(O?@>NR!;$#T_N+P]'C
  734. XM ]C1X_:'4@8!=%SK)?]- G@+B@2+'?\%B ?K#)!7B@284.AH 8/$!/9%!B!U
  735. XM4T;_3OR#?OP =$F#?0( =,^+10(K1OP;R2/! T;\B4;Z4%;_->B<&X/$!HM&
  736. XM^@$% _ I1OPI10+KR_]V_%:*10>84.C\$8/$!HE&^#W__W0#*4;\BT;^*T;\
  737. XMZ33_D%Y?B^5=PU6+[(/L"%=6OKH%C48&B4;\5NC/ X/$ HOXC48&4/]V!%;H
  738. XM1P6#Q :)1OA65^@X!(/$!(M&^%Y?B^5=PU6+[(/L E:+=@2+QBVR!;$#T_B+
  739. XMR-'@ \'1X 52!HE&_O9$!H-T!O9$!D!T![C__^F( )#V1 8"= : 3 8@Z^V 
  740. XM3 8!BU[^@"?[]D0&#'4BB]Z!Z[(%L0/3^XO#T>,#V-'C]H=2!@%U"5;HUP&#
  741. XMQ +K!8M$!(D$BU[^_W<"_W0$BD0'F%#HR@^#Q :)1 (+P'0%/?__=1F#? ( 
  742. XM= 6P(.L#D+ 0"$0&QT0"  #I?O^0_TP"BQS_!(H'*N1>B^5=PU6+[(/L"%=6
  743. XMBW8&BD0'F(E&^HO&+;(%L0/3^(O(T> #P='@!5(&B4;X]D0&@W0&]D0&0'0+
  744. XM@$P&(+C__^D0 9#V1 8!=>^ 3 8"@&0&[RO B40"B_B)?OSV1 8,=5^+WH'K
  745. XML@6Q ]/[B\/1XP/8T>/VAU(& 75&@?ZZ!70&@?["!74S_W;ZZ"<6@\0""\!U
  746. XM+?\&L 6!_KH%=0:X^ GK!)"X& Z)1 2)!(M>^,=' @ "Q@<!ZPB05NC* (/$
  747. XM O9$!@AU&8O>@>NR!;$#T_N+P]'C ]C1X_:'4@8!=%"+/"M\!(M$!$")!(M>
  748. XM^(M' DB)1 (+_WX35_]T!/]V^NCC#X/$!HE&_.L:D(M>^O:';04@= ^X @!0
  749. XM*\!04%/H?@R#Q B+7 2*1@2(!^L7D+\! (O'4(U&!%#_=OKHI@^#Q :)1OPY
  750. XM?OQT ^GK_HI&!"KD7E^+Y5W#D%6+[%:+=@3V1 :#=!WV1 8(=!?_= 3H!1&#
  751. XMQ * 9 ;W*\")!(E$!(E$ EY=PY!5B^R#[ )6BT8$+;(%L0/3^(O(T> #P='@
  752. XM!5(&B4;^N  "4.C<$(/$ HM>!(E'! O = ^ 3P8(BU[^QT<"  +K%Y"+7@2 
  753. XM3P8$BT;^0(E'!(M>_L=' @$ BUX$B_.+1 2)!\=' @  7HOE7<-5B^R#[ I7
  754. XM5HMV"(M>!HH'F#UA '0H/7( = L]=P!T%"O Z<T D"O_QD;\ ;D! (I6_.L?
  755. XMOP$#QD;\ NOOD+\) >OTD/?' @!U/X'/ @"#Y_ZR@/]&!HM>!H _ '0V"\ET
  756. XM,HH'F#TK '3:/6( =!,]= !U%8O'J0# =0Z!SP! Z]*0B\>I ,!T!2O)Z\:0
  757. XM@<\ @.N_B%;\B4[^N*0!4%?_=@3H10N#Q :)1OH+P'T#Z6[_BD;\B$0&_P:P
  758. XM!8O&+;(%L0/3^(O(T> #P='@!5(&B4;X*L"+7OB(!YB)1 +'1P0  "O B02)
  759. XM1 2*1OJ(1 >+QEY?B^5=PU6+[(/L!%:+=@3_!K %@?ZZ!74(QT;^^ GK#)"!
  760. XM_L(%=23'1OX8#O9$!@QU&8O>@>NR!;$#T_N+P]'C ]C1X_:'4@8!= 0KP.LU
  761. XMB\8ML@6Q ]/XB\C1X /!T> %4@:)1OR+1OZ)1 2)!(M>_+@  HE' HE$ L8'
  762. XM 8!,!@*X 0!>B^5=PU6+[(/L E:#?@0 =%N!?@:Z!70'@7X&P@5U=HM>!HI'
  763. XM!YA0Z!X3@\0""\!T9(M&!BVR!;$#T_B+R-'@ \'1X 52!HE&_O]V!NA+ (/$
  764. XM HM>_L8' ,=' @  BUX&B_,KP(D$B4<$ZRJ0BUX&@7\$^ ET!X%_!!@.=1B*
  765. XM1P>84.C#$H/$ @O = G_=@;H" "#Q )>B^5=PU6+[(/L!%=6BW8$*_^*1 8D
  766. XM SP"=4;V1 8(=1F+WH'KL@6Q ]/[B\/1XP/8T>/VAU(& 70GBP0K1 2)1OP+
  767. XMP'X;4/]T!(I$!YA0Z),,@\0&.T;\= > 3 8@O___BT0$B03'1 (  (O'7E^+
  768. XMY5W#58OLN&0!Z /S5U:+=@:-AI[^H]H)BT8(H\H)BT8$H[X)QP;4"0  QP;2
  769. XM"0  Z7P"@#PE= /I6 +'!M8) 0 KP*/&":/"":/0":/$":/.":/,":/ ":.\
  770. XM":/("<<&X D@ (!\ 3!U/$;'!N ), #K,X \*W4-_P;&"<<&S D  .LBD( \
  771. XM('4-@S[&"0!U%?\&S GK#_\&O GK"8 \+771_P;("4:*!)A0Z/4'@\0""\!U
  772. XMZ%:XW E0Z&8'@\0$B_"#/MP) 'T,_P;(":'<"??8H]P)@#PN=2/_!LX)1E:X
  773. XMU@E0Z#P'@\0$B_"#/M8) 'T*QP;6"0$ _P[."8H$F#U& '0R/4X =#4]: !T
  774. XM(#UL '4&QP;$"0( @S[$"0!U!8 \3'4!1H \ '4;Z8@!QP;$"0$ Z^/'!L0)
  775. XM$ #KV\<&Q D( .O3B@28B8:<_CU% '0*/4< = 4]6 !U"?\&P@F#AIS^((N&
  776. XMG/XM8P ]%0!V ^D4 0/ DR[_I]06BQ[*"8L?H=()B0>#!LH) NEI 9#_!M )
  777. XMQP:\"0  N H 4.A_ 8/$ NE1 9"X" #K\)#_!L )_P;""8,^S@D =0G'!M@)
  778. XM 0#K!Y#'!M@)  #_!LX)QP;6"00 @S[$"0AU ^F( "O H\0)B4;\.0;<"70G
  779. XMH=P)B4;\@S[("0!T"<<&W D  .L2D(,NW D%H=P)"\!] BO H]P)@P;*"0*X
  780. XM$ !0Z/\ @\0"N#H 4.C/ X/$ H-^_ !T(H,^R D =!6+1OPM!0"CW D+P'T"
  781. XM*\"CW GK!Y#'!MP)  "#+LH)!+@0 %#HO@"#Q +I'_^X$ #I+_\KP%#HX@'I
  782. XM*O^0N $ Z_.0_[:<_NBY ND9_X,^Q D = .+QDZ+_D> /0!T!8 ])77UB\<K
  783. XMQE >5NCM X/$!HOW@#P = /I?/V#/M() '59BQZ^"?9'!B!T3[C__^M-@!:<
  784. XM%886AA:&%I 6G!60%I 6D!:0%H05L!6V%9 6D!9V%I 6F!60%I 6<!:#/M0)
  785. XM '03@S[2"0!U$(L>O@GV1P8@=;?K!$;KF9"AT@E>7XOE7<.058OL@^P85U:#
  786. XM?@0*= 3_!M )@S[$"0)T!X,^Q D0=1:+'LH)BP>+5P*)1OR)5OZ#!LH)!.LJ
  787. XM@S[0"0!T$8L>R@F+!XE&_,=&_@  ZPZ0BQ[*"8L'F8E&_(E6_H,&R@D"@SZ\
  788. XM"0!T#8M&_ M&_G0%BT8$ZP(KP*/>"8LVV@F#/M ) '4J@W[^ 'TD@WX$"G47
  789. XMQ@0M1HM&_(M6_O?8@]( ]]J)1OR)5O['1O@! .L%QT;X  "-1NB+^/]V!%?_
  790. XM=O[_=OSH]0V#Q B#/LX) '0A5^CU#(/$ HL.U@DKR(E.].L%D,8$,$:+P4D+
  791. XMP'_UB4[TBP[""8H%B 0+R70'/&%\ X L($9'@'W_ '7I@S[0"0!U%*'&"0L&
  792. XMS ET"X-^^ !U!;@! .L"*\!0Z+("@\0"7E^+Y5W#D%6+[(/L$%=6@WX$ '04
  793. XMO@$ H<H)B4;XC%[Z@P;*"0+ID0"#/L0)$'47BQ[*"8L'BU<"B4;XB5;Z@P;*
  794. XM"03K%9"+'LH)BP>)1OR)1OB,7OJ#!LH) H,^Q D0=0V+1O@+1OIU%+C,!NL)
  795. XM@W[\ '4)N-,&B4;XC%[ZBT;XBU;ZB4;RB5;T*_8Y-LX)=!R+#M8)ZPZ0Q%[R
  796. XM_T;R)H _ '051CO.?A#K[9!&Q%[R_T;R)H _ '7SBS[<"2O^@S[("0!U!U?H
  797. XM'@&#Q )6_W;Z_W;XZ&\!@\0&@S[("0!T!U?H P&#Q )>7XOE7<-5B^R#[ 2A
  798. XMR@F)1OZ#?@1G= :#?@1'=02P >L"*L"(1OR#/LX) '4&QP;6"08 @'[\ '0-
  799. XM@S[6"0!U!L<&U@D! /\VP@G_-M8)_W8$_S;:"?]V_O\6^ :#Q J ?OP =!*#
  800. XM/KP) '4+_S;:"?\6^@:#Q *#/KP) '02@S[6"0!U"_\VV@G_%OX&@\0"@P;*
  801. XM"0C'!MX)  "AQ@D+!LP)=!/_=O[_%@ '@\0""\!T!;@! .L"*\!0Z @!B^5=
  802. XMPU6+[%:#/M0) '4OBQZ^"?]/ G@.BD8$BS?_!X@$*N3K"Y!3_W8$Z&_U@\0$
  803. XM0'4'_P;4">L%D/\&T@E>7<.058OL@^P"5U:#/M0) '5)BW8$"_9^0NL5_S:^
  804. XM"?\VX GH-_6#Q 1 =03_!M0)B\9."\!^%HL>O@G_3P)XVZ#@"8L__P>(!2KD
  805. XMZ]R#/M0) '4'BT8$ 0;2"5Y?B^5=PU6+[(/L E=6BW8(@S[4"0!U4.L<_S:^
  806. XM"<1>!":*!YA0Z-GT@\0$0'4$_P;4"?]&!(O&3@O =!V+'KX)_T\">-3$7@0F
  807. XMB@>+'KX)BS__!X@%*N3KTH,^U D =0>+1@@!!M()7E^+Y5W#58OL@^P*5U:+
  808. XM-MH)*\")1OR)1OJ#/N ),'48.0;."702.0; "70&.0;8"74&QP;@"2  BS[<
  809. XM"5;HKPF#Q *)1O@K^"M^!(,^R D =1B /"UU$X,^X DP=0RLF%#HG?Z#Q +_
  810. XM3OB#/N ),'0+"_]^!X,^R D =!F#?@0 = ;_1OKH7P"#/MX) '0&_T;\Z&H 
  811. XM@S[("0!U)E?HG_Z#Q *#?@0 = F#?OH =0/H-0"#/MX) '0)@W[\ '4#Z#T 
  812. XM_W;X'E;HT_Z#Q :#/L@) '0-QP;@"2  5^AA_H/$ EY?B^5=PX,^Q@D = 6X
  813. XM*P#K [@@ %#H!_Z#Q +#D+@P %#H^_V#Q *#/MX)$'47@S[""0!T!KA8 .L$
  814. XMD+AX %#HW?V#Q +#D%6+[(/L!%=6BW8&QT;^ 0" /"IU#XL>R@F+/X,&R@D"
  815. XM1NM(D( \+74&QT;^__]&*_^ /#!\-8 \.7\P.3[."74+@#PP=0;'!N ), "*
  816. XM!)B+S]'AT>$#S]'A \B#Z3"+^4: /#!\!8 \.7[ABT;^]^^+^(M>!(D_B\9>
  817. XM7XOE7<.058OL@^P"5K[:!HI.!.L"D$: / !T"CH,=?:X 0#K Y KP%Z+Y5W#
  818. XMD%6+[(/L E:^L@6+#LH&]D0&@W46*\")1 *(1 :)1 2)!,9$!_^+QNL,D(O&
  819. XM@\8(.\%UVRO 7HOE7<-5B^R+7@0['FL%<@NZ"0 SP.D [>D,[5.:J08  (7 
  820. XM=?/&AVT% (OE7<-5B^R+7@0['FL%<@NZ"0 SP.G6[.GB[(/L!(O,4_]V"/]V
  821. XM!O]V"A91FO__  !96H7 =>&1@*=M!?V+Y5W# %6+[(/L#K= 'O]V!!:-5OY2
  822. XM%HU6^%(STE)2BTX(Z(8!BT8&J0 != B RA"I  1U**D  G0@@,H"4(U&_A[_
  823. XM=@064#/ 4%":__\  (7 6'4(BT[^ZP. R@%14B4#  K'4#/ 4%":__\   O 
  824. XM=!8];@!U#O;"\+H" '0#NA$ Z2SLZ8T BT;^.P9K!7X-4)HE'0  NA@ ,\#K
  825. XMY(O04!:-7O13%HU&^%":"@8   O =6&+1@8SR:D @'4.J0! =0?V!N$&@'4"
  826. XML8"(3O**1O0\ 74'QD;T0.F. #P"=0?&1O0(Z8, ,L"(1O0*R71Z]T8& @!T
  827. XM<U*Y__]14;D" %$6C4;Z4)I?'0  "\!T##V# '0#Z:CK,\#K3U(6C4;V4+@!
  828. XM % 6C4;X4)K__P  "\!U(SE&^'0R@W[V&G484H-N^@OP _W;\_W;ZFO__
  829. XM   +P'6^4C/ 4%!0%HU&^E":=QX   O =:J*3O3VP4AU)A[_=@06C4;X4#/ 
  830. XM4%":NQT  /=&^ $ = . R1#W1@8( '0#@,D@"D[R@,D!B\*+V(B/;06+Y5W#
  831. XMH60%]] CP3/)J(!U X#) <, 58OL@^P(,\"+7@0['FL%<T&+3@CC9/:';04"
  832. XM=5U7,]*+3@B+?@8>!_:';04(=!"*AX$%/ IT"*I"2<:'@04*4P9748U&^A90
  833. XMFIL>  !?"\!T!KH) .F<ZHM&^@O =1(+VW4.]H=M!4!T!X"/;04"ZPD#PO:'
  834. XM;06 =02+Y5W#@*=M!?M65XMV!HO^B\CC)K0-@#P*=06 CVT%!*PZQ'0;/!IU
  835. XM!X"/;04"ZP6(!4?BZXO'*T8&7UZ+Y5W#@_D!= > / ITZ>OD]H=M!4!T(@O;
  836. XM=1I3C4;Y%E!1C4;Z%E":=1\   O = 5?7ND8ZK *Z[O&1OD 4XU&^19048U&
  837. XM^A90F@H@   +P'7>]T;Z__]T-(-^" %T,_:';04(=1Q3N/__4%#WV%"-1OP6
  838. XM4)K2'@  @'[Y"G4.Z77_BD;YB(>!!3P*= *P#>EB_X!^^0IUQ^N;58OL@^P,
  839. XMBUX$.QYK!7((N@D ,\#IC>GVAVT%('024S/)45%!05&-1O064)I7(   ]H=M
  840. XM!8!T;XM6!AX',\")1OZ)1OS\5U:+^HORB6;XBTX(XU:P"O*N=4OH) $]J !V
  841. XM2H/L HO<N@ "/2@"<P.Z@  KXHO4B_H6!XM."*P\"G0-._MT&JKB].@E .F)
  842. XM + -._MU ^@9 *JP"O]&_.OBZ X Z^%>7^F" .ML,\#I2N104U&+SRO*XQ^+
  843. XM7@13'E)1C4;T%E":C D   O =1"+7O0!7OX+VW0&65M8B_K#@\0("\!T&#UM
  844. XM '0-/0$ N@D =0BZ' #K [H@ /GK(/:';05 = N+7@: /QIU _CK#KH< #/ 
  845. XM^>L&BT;^*T;\BV;X7E]R!(OE7</I>>B+3@@+R74$B\'K[HM6!E,>4E&-1O06
  846. XM4)I"(0  "\!T%SUM '0-/0$ N@D =="Z' #KR[H@ .O&BT;T"\!UN_:';05 
  847. XM= F+VH _&G4"ZZNZ'  SP.NH6:&D!3O$<P8KQ/?8_^$SP.OZ58OLBUX$"]MT
  848. XM!(!/_@&+Y5W#58OL5E>[X@:#/P!U*1X'N 4 Z',!=04SP)GK)$ D_J/B!J/D
  849. XM!I;'! $ @\8$QT3^_O^)-N@&BTX$C-B.P.@) %]>B^5=P^G. $%T^H#A_H/Y
  850. XM[G/RBW<"_*V+_J@!=$)(.\%S%8O0 _"MJ %T- /"!0( B_>)1/[KYHO^= P#
  851. XM^8E,_BO!2(D%ZP4#^?Y,_HO&C-J,T3O1= 4FC![P!HE_ L,FQ@;V!@(]_O]T
  852. XM)8O^ _"MJ %T\HO^2#O!<[V+T /PK:@!=.(#P@4" (OWB43^Z^:+1P@+P'0$
  853. XMCMCK%";^#O8&=!&,V(S7.\=T!2:.'NP&BS?KO(MW!C/ Z&H .\9T#20!0$"8
  854. XMZ%X = W^3?[H' !T!99.3NN9C-B,T3O!= 0FH_ &BP>)1P(SP)G#48M%_J@!
  855. XM= ,KR$E!0;K_?R8[%O(&=@31ZG7UB\$#QG(5 \)R#??2(\(KQN@, '4(]]+1
  856. XMZG7E,\!9PU)1Z!T =!A7B_Z+\ /RQT3^_O^)=P:+UBO72HE5_EA96L-34#/2
  857. XM'E)24+@! % &'^@/ (/$"(/Z_Q]:6W0""]+# %6+[%97!H-^" !U.+]*!(M6
  858. XM!HM&!$AU!^A7 '(GZTR+-DH%2'01._=T#8M$ HE&#%;H/@!><S2#Q@2!_DH%
  859. XM<P0+TG4&N/__F>LA4(O$4A90,\!0FO__  !;^87 =>:)%(E< HDV2@6+TS/ 
  860. XM!U]>B^5=PXM.#(OW.4P"= R#Q@2!_DH%=?+YZRR+V@,<<B:+TX[!._=U!CD>
  861. XM1 1S$U-1FK()  "%P'7>._=U!(D61 22AP2+T<, 58OLB]>+WHS8CL"+?@0S
  862. XMP+G___*NC77_BWX&N?__\J[WT2OYA_Z+1@3WQ@$ = *D2='I\Z43R?.DB_.+
  863. XM^EW# %6+[(O7B]Z+=@:+_HS8CL SP+G___*N]]&+?@2+QZ@!= *D2='I\Z43
  864. XMR?.DB_.+^EW#58OLB]>,V([ BWX$,\"Y___RKO?129&+^EW# %6+[%=6'@>+
  865. XM?@2+=@:+WXM.".,,K K = .JXO@RP/.JB\->7XOE7<-5B^Q75AX'BTX(XR:+
  866. XMV8M^!(OW,\#RKO?9 \N+_HMV!O.FBD3_,\DZ1?]W!'0$24GWT8O!7E^+Y5W#
  867. XMZ0$  %6+[%=6BW8$,\"9,]NL/"!T^SP)=/=0/"UT!#PK=0&L/#EW'RPP<AO1
  868. XMX]'2B\N+^M'CT=+1X]'2 ]D3UP/8@]( Z]Q8/"V3=0?WV(/2 /?:7E]=PU6+
  869. XM[%97LP&+3@B+1@0STH/Y"G4!F8M^!NE5! !5B^Q65[, Z3X$58OL@^P$5U:+
  870. XM-ID%"_9T1H-^! !T0/]V!.CH_H/$ HOXZP20@\8"@SP ="K_-.C3_H/$ CO'
  871. XM?NR+'( Y/77E5_]V!%/H ?^#Q 8+P'76BQR-00'K Y KP%Y?B^5=PU6+[(M>
  872. XM!#L>:P5]$8/[ 'P,]H=M!4!T!;@! .L",\"+Y5W# (,^X@D =0?H!@#_!N()
  873. XMPY!5B^R#[ 175K@^"%#H7_^#Q *+\ OV=0/ICP" / !U ^F' +@# %!6_S90
  874. XM".A?_H/$!K@0#IE24(/& U;HL?Z#Q )24.A?"*-*"(D63 @K_XO? ]Z /P!T
  875. XM'XO? ]Z*!YB+V/:'"0<$=0F+WP/>@#\M=09'@_\#?-B+WP/>@#\ =!6X P!0
  876. XMB\<#QE#_-E((Z/W]@\0&ZP>+'E((Q@< BQY2"( _ 1O 0*-."%Y?B^5=PU6+
  877. XM[(/L!E=6BW8$@WP( WT#Z:X @WP("7X#Z:4 @WP( WX)@WP("7T#Z8  BWP*
  878. XM@<=L!X'_P@=^%8-\" -U#XM<"-'CBX<D" 4' .L*D(M<"-'CBX<F"(E&^O?'
  879. XM P!U _]&^HM\"H/O1KAM ??OB\B-10&+V9DSPBO"N0( T_@SPBO" T;Z \,%
  880. XM! "9N0< ]_F+1OHKPHE&_H-\" -U$SE$#G\(=1R#? 0"?!:X 0#K$Y"+1OXY
  881. XM1 Y\\G4&@WP$ 7SJ*\!>7XOE7<-5B^R#["!75HMV!+B 4;H! %)0C40#F3/"
  882. XM*\*Y @#3^#/"*\*94E#H @>)1NJ)5NR+7@;1XXN_(@B+QIFY! #W^0O2=0>#
  883. XM?@8"?@%'N#P F5)0BT8,F5)0Z-$&N1 .*]M348O(BT8*B]J94E")3N2)7N;H
  884. XMMP:Y@%&[ 0!348O(N&T!B]KW[HO0BT8( \(#QYE24(E.X(E>XNB1!@-&X!-6
  885. XMX@-&Y!-6YHO(BT8.B]J9 \@3VH'! *:!T\X2 4[J$5[LBT8( \>)1OSHJOVA
  886. XM2@B+%DP( 4;J$5;LC410B4;XBT8&2(E&]HM&"HE&\H,^3@@ =!>-1NY0Z#S^
  887. XM@\0""\!T"8%NZA .@U[L (M&ZHM6[%Y?B^5=PU6+[%>+?@0>!XO?,\"Y___R
  888. XMKD'WV8I&!HO[\JY/. 5T C/_B\=?B^5=PU6+[(O6BW8&BUX$L/\*P'0LK(HG
  889. XM0SK@=/0L03P:&LF X2 "P01!AN L03P:&LF X2 "P01!.L1TU!K '/^8B_)=
  890. XMPU6+[%<>!XM^!#/ N?__\JY!]]E/BD8&_?*N1S@%= 0SP.L"B\?\7XOE7<, 
  891. XM58OL@^P@5E>+=@:,T([ N1  ,\"-?N#SJZP*P'04B_B+R+ !@.$'TN"Q ]/O
  892. XM"$/@Z^>+=@2L)?\ =!>+^(O(L & X0?2X+$#T^\B0^!TYHU$_U]>B^5=PU6+
  893. XM[(O7B]Z,V([ BW8&BWX$B\>+3@CC#J@!= *D2='I\Z43R?.DB_.+^EW#BTX*
  894. XMBT8$BU8&BWX(5QX'_),*P'03@_D*=0X+TGD*L"VJ]]N#T@#WVHOWDC/2"\!T
  895. XM O?QD_?QDH?3!# \.78"!">JB\(+PW7BB 5/K(8%B$3_C40!.\=R\EA?7HOE
  896. XM7<, 58OL'O]V!#/ 4%":__\  (7 = /ICM^+Y5W# %6+[/]V!O]V!"O 4.@%
  897. XM (/$!EW#58OL@^P*5U:+=@C'1O8! (-^! !U#XU&!!90C4;Z%E":__\  /]V
  898. XM!(U&^!90C4;V%E":3"L  (M^!@O_=2^+1O8% P [QGX&BW;V@\8#5N@4]X/$
  899. XM HOX"_]U#\<&8@4, ,<&:04( .M$D(E^!HI&! 1 B 5'Q@4Z1\8%7$>+1O8%
  900. XM P [QG<3_W8$'E>-1O864)K__P  "\!T$,<&8@4B ,<&:04! "O ZP.-1?U>
  901. XM7XOE7<.058OL@^P&5U:*1@0JY(E&^HM^!H!] 3IU X/' H ]7'0%@#TO=0: 
  902. XM?0$ = OV1OH0=06 /0!U!;A 0.L#N " B_#V1OH%= 6X  'K [B  0OPN"X 
  903. XM4/]V!NBQ_8/$!(OX"_]T,;B0"%!7Z%[]@\0$"\!T'KB5"%!7Z$_]@\0$"\!T
  904. XM#[B:"%!7Z$#]@\0$"\!U!('.0 "+QB7  ;$#T^@+\(O&)< !L0;3Z OPB\9>
  905. XM7XOE7<.058OL@^PP5U:+=@2+?@;'1O@! ,=&]/__N)\(4%;H9/V#Q 0+P'03
  906. XMQP9B!0( QP9I!0( N/__Z0L"D(!\ 3IU'HH$F(O8]H<)!P%T!I@%( #K XH$
  907. XMF"U@ (E&^NL0D(U&^A90C4;\%E":VRH  !Y6C4;T%E"X$ !0C4;0%E"X) !0
  908. XMC4;X%E KP%!0FO__   +P'1UN*((4%;HZ?R#Q 0+P'21N/__4"O 4/]V^NCI
  909. XM_8/$!HE&]@O =0/I=_]6Z*C]@\0"0'0V_W;VZ)S]@\0"_W;VZ!?U@\0"QT;D
  910. XM$  KP(E&WHE&W,=&V"$ B4;:B4;2B4;6B4;0B4;4ZQ60_W;VZ.KT@\0"Z2O_
  911. XM_W;TFO__   KP(E% HE%"HE%"(M&^DB)!8E%#%;_=N3H(?Z#Q 2)103'108!
  912. XM (M&W(M6WHE%#HE5$(M&VB4? -'@4(M&VK$%T^@E/P!0BT;:L0O3Z"4? %"+
  913. XM1M@E'P!0BT;8L073Z"4/ %"+1MBQ"=/H)7\ 4.A5^H/$#(E%%HE5&(-^T !U
  914. XM!H-^T@!T1(M&TB4? -'@4(M&TK$%T^@E/P!0BT;2L0O3Z"4? %"+1M E'P!0
  915. XMBT;0L073Z"4/ %"+1M"Q"=/H)7\ 4.@!^H/$#.L&BT46BU48B44:B54<@W[4
  916. XM '4&@W[6 '1$BT;6)1\ T>!0BT;6L073Z"4_ %"+1M:Q"]/H)1\ 4(M&U"4?
  917. XM %"+1M2Q!=/H)0\ 4(M&U+$)T^@E?P!0Z*7Y@\0,ZP:+11:+51B)11*)510K
  918. XMP%Y?B^5=PU6+[![_=@0SP%!0FO__  "%P'0#Z:S;B^5=PP!5B^Q75E,S_XM&
  919. XM!@O ?1%'BU8$]]CWVAT  (E&!HE6!(M&"@O ?1%'BU8(]]CWVAT  (E&"HE6
  920. XM" O =16+3@B+1@8STO?QB]B+1@3W\8O3ZSB+V(M."(M6!HM&!-'KT=G1ZM'8
  921. XM"]MU]/?QB_#W9@J1BT8(]^8#T7(,.U8&=P=R!CM&!'8!3C/2ED]U!_?:]]B#
  922. XMV@!;7E^+Y5W"" !5B^R+1@:+7@H+V(M>"'4+BT8$]^.+Y5W"" #WXXO(BT8$
  923. XM]V8* \B+1@3WXP/1B^5=P@@5  ( .@D"     P'.!@$ !0 # 2P@ 0")  ,!
  924. XMOR$! (H  P$<) $ (@ # 6<D 0 F  ,!204! #$  P&6*@$ .0 # :@@ 0 Z
  925. XM  ,! AX! #L  P%X+@$ /  # 2XM 0 _  ,!K2P! $   P&^'@$ 1  # =D=
  926. XM 0!&  ,![2H! $<  P&++ $ 2  # ? > 0!+  ,!&QX! $T  P$X!@$ 60 #
  927. XM 3D% 0!<                                                    
  928. XM                                                            
  929. XM                                                            
  930. XM                                                            
  931. XM                                                            
  932. XM                                                            
  933. XM                                                            
  934. XM                                                            
  935. XM                                                            
  936. XM                                                            
  937. XM                                                            
  938. XM                                         $U3(%)U;BU4:6UE($QI
  939. XM8G)A<GD@+2!#;W!Y<FEG:'0@*&,I(#$Y.#@L($UI8W)O<V]F="!#;W)P$0!&
  940. XM:6QE(%-P;&ET=&5R(&%N9"!292UA<W-E;6)L97(@5C$N,2P@8GD@4&EE<G)E
  941. XM($UA<G1I;F5A=2P@.3 O,#4O,C N"@!4:&ES('!R;V=R86T@:7,@<'5B;&EC
  942. XM(&1O;6%I;B!A;F0@;6%Y(&)E(&9R965L>2!D:7-T<FEB=71E9"X*  I5<V%G
  943. XM93H@<W!L:71F(&9I;&5?=&]?<W!L:70@6V-H=6YK7W-I>F5="@ @(" @(" @
  944. XM268@8VAU;FM?<VEZ92!I<VXG="!S<&5C:69I960L('1H92!F:6QE('=I;&P@
  945. XM8F4@<W!L:70* " @(" @("!I;G1O('1W;R!F:6QE<R!O9B H87!P<F]X:6UA
  946. XM=&5L>2D@97%U86P@<VEZ92X*"@ @(" @(" @<W!L:71F(&1E<W1?9FEL92 O
  947. XM<@H (" @(" @("]R('=I;&P@<F4M87-S96UB;&4@=&AE('!A<G1S(&)A8VL@
  948. XM:6YT;R!T:&4@=VAO;&4* " @(" @("!S<&5C:69I960@8GD@9&5S=%]F:6QE
  949. XM+@H +@ M<@ O<@ *4F4M87-S96UB;&EN9R E<R N+BX*"@ *1&]N92X* ')B
  950. XM  I#;W5L9&XG="!O<&5N(&EN<'5T(&9I;&4A"@ *0F%D(&9I;&4@:&%N9&QE
  951. XM(0H "DEN=F%L:60@8VAU;FL@<VEZ92$*  I3<&QI='1I;F<@)7,@+BXN"@H 
  952. XM"D1O;F4N"@      @   5&]O(&UA;GD@9FEL97,L('!L96%S92!S<&5C:69Y
  953. XM(&$@8VAU;FL@<VEZ92!T:&%T"@!W:6QL(')E<W5L="!I;B!F97=E<B!T:&%N
  954. XM(#$P,# @;W5T<'5T(&9I;&5S(0H =V( 56YA8FQE('1O(&-R96%T92!O=71P
  955. XM=70@9FEL92 E<PH 17)R;W(@=VAI;&4@<F5A9&EN9R!I;G!U="!F:6QE("5S
  956. XM"@!%<G)O<B!W:&EL92!W<FET:6YG(&]U='!U="!F:6QE(0H (" @(%=R:71I
  957. XM;F<@)6QD(&)Y=&5S('1O("5S"@ @(" @5W)I=&EN9R E;&0@8GET97,@=&\@
  958. XM)7,* ')B $YO=&AI;F<@=&\@9&\A"@!W8@!#;W5L9&XG="!O<&5N(&]U='!U
  959. XM="!F:6QE(0H 17)R;W(@=VAI;&4@<F5A9&EN9R!I;G!U="!F:6QE("5S"@!%
  960. XM<G)O<B!W:&EL92!W<FET:6YG(&]U='!U="!F:6QE(0H (" @($-O<'EI;F<@
  961. XM9FEL92 E<R!T;R!O=71P=70@9FEL92X* ')B # P #  "D-A;B=T(&%L;&]C
  962. XM871E(&%N(&%D97%U871E(&-O<'D@8G5F9F5R+@H             C@8  /__
  963. XM                                                            
  964. XM                                                            
  965. XM                                                            
  966. XM                                                            
  967. XM                                                            
  968. XM                                    2@1?0U]&24Q%7TE.1D\]    
  969. XM                    % "!@8$                       H*"@H*"@H*
  970. XM"@H*"@H*"@H*"@H*                    (!(       !< %P   #X"P  
  971. XM^ L!          (!         @(                                 
  972. XM                                                            
  973. XM                                                            
  974. XM                             0   @                          
  975. XM                                                            
  976. XM                                                            
  977. XM        2@8H;G5L;"D *&YU;&PI "LM(",                         
  978. XM   @     ! '$ <0!Q '$ <         (" @(" @(" @*"@H*"@@(" @(" @
  979. XM(" @(" @(" @("!($! 0$! 0$! 0$! 0$! 0A(2$A(2$A(2$A! 0$! 0$!"!
  980. XM@8&!@8$! 0$! 0$! 0$! 0$! 0$! 0$! 1 0$! 0$(*"@H*"@@(" @(" @("
  981. XM @(" @(" @(" @("$! 0$"                                      
  982. XM                                                            
  983. XM                                                            
  984. XM              #__QX .P!: '@ EP"U -0 \P 1 3 !3@%M ?__'@ Z %D 
  985. XM=P"6 +0 TP#R ! !+P%- 6P!5%H  %!35 !01%0 @'    $ 0@A&"%-U;DUO
  986. XM;E1U95=E9%1H=49R:5-A= !*86Y&96)-87)!<')-87E*=6Y*=6Q!=6=397!/
  987. XM8W1.;W9$96,  "YE>&4 +F)A=  N8V]M #\J "XO7                   
  988. XM "(+/#Q.35-'/CX  %(V,# P#0HM('-T86-K(&]V97)F;&]W#0H  P!2-C P
  989. XM,PT*+2!I;G1E9V5R(&1I=FED92!B>2 P#0H " !2-C P. T*+2!N;W0@96YO
  990. XM=6=H('-P86-E(&9O<B!A<F=U;65N=',-"@ ) %(V,# Y#0HM(&YO="!E;F]U
  991. XM9V@@<W!A8V4@9F]R(&5N=FER;VYM96YT#0H _  -"@#_ ')U;BUT:6UE(&5R
  992. XM<F]R(  " %(V,# R#0HM(&9L;V%T:6YG('!O:6YT(&YO="!L;V%D960-"@ !
  993. XM %(V,# Q#0HM(&YU;&P@<&]I;G1E<B!A<W-I9VYM96YT#0H ____ 0 " $P$
  994. X$ @   # Q
  995. Xend
  996. END_OF_FILE
  997. if test 38043 -ne `wc -c <'others/splitf.uu'`; then
  998.     echo shar: \"'others/splitf.uu'\" unpacked with wrong size!
  999. fi
  1000. # end of 'others/splitf.uu'
  1001. fi
  1002. echo shar: End of archive 16 \(of 24\).
  1003. cp /dev/null ark16isdone
  1004. MISSING=""
  1005. for I in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 ; do
  1006.     if test ! -f ark${I}isdone ; then
  1007.     MISSING="${MISSING} ${I}"
  1008.     fi
  1009. done
  1010. if test "${MISSING}" = "" ; then
  1011.     echo You have unpacked all 24 archives.
  1012.     rm -f ark[1-9]isdone ark[1-9][0-9]isdone
  1013. else
  1014.     echo You still need to unpack the following archives:
  1015.     echo "        " ${MISSING}
  1016. fi
  1017. ##  End of shell archive.
  1018. exit 0
  1019.